{% extends "sounds/_section.html" %} {% load cache %} {% load display_sound %} {% load paginator %} {% block title %}Sounds browse{% endblock title %} {% block section_content %}

Sounds

Random sound of the day

{% if random_sound %} {% display_raw_sound random_sound %} {% else %}

We're still choosing a random sound... check back soon! {% endif %}

{% cache 3600 latest_sounds %}

Latest sounds

{% for latest_addition, sound_obj in latest_sounds %} {% display_raw_sound sound_obj %} {% if latest_addition.extra %}
{{latest_addition.extra}} more sounds from {{latest_addition.username}} in the last 48 hours
{% endif %} {% empty %}

No sounds in the database! {% endfor %}

more...

{% endcache %} {% cache 3600 most_downloaded_sounds %}

Most downloaded sounds (uploaded in the last week)

{% for sound in popular_sounds %} {% display_raw_sound sound %} {% empty %}

No sounds in the database! {% endfor %}

more...

{% endcache %}
{% endblock %}