{% load cache %} {% if pack %} {% cache 3600 display_pack pack.0.id %} {% with pack.0 as pack %}
by {{pack.user.username}}.
Downloaded {{pack.num_downloads}} times.
Tags of sounds inside the pack:
{% with pack.get_pack_tags as tags %}
{% if tags == -1 %}
Tag information is not available right now.
{% else %}
{% for tag in tags.tags %}
{{ tag }}
{% endfor %}
{% if tags.num_tags == 20 %}
...
{% endif %}
{% endif %}
{% endwith %}