{% if home %}Your{% else %}{{ user.username }}'s{% endif %} latest sounds
{% for sound in latest_sounds %} {% display_raw_sound sound %} {% endfor %}{% if home %}Your{% else %}{{ user.username }}'s{% endif %} latest sounds
{% if home %}You have not uploaded any sounds... {% else %}{{ user.username }} has not uploaded any sounds... {% endif %}
Uploaded sounds awaiting moderation ({{ unmoderated_sounds_count }})
{% for ticket, sound in unmoderated_sounds %}Uploaded sounds that have not been processed yet ({{ unprocessed_sounds.count }})
{% comment %}Sounds in this list have not been processed yet and thus can't be moderated. This might be because they are still pending to process or because processing has failed.
{% endcomment %} {% for sound in unprocessed_sounds %}
Following users and tags
{% if following %} {% if home %}Users you are following ({{ following_count}})
{% else %}Users {{ user.username }} is following ({{ following_count}})
{% endif %}{% for suser in following %}
{% endfor %}
more...
{% endif %} {% if followers %} {% if home %}Users that are following you ({{ followers_count}})
{% else %}Users that are following {{ user.username }} ({{ followers_count}})
{% endif %}{% for suser in followers %}
{% endfor %}
more...
{% endif %} {% if following_tags %}Tags you are following ({{ following_tags_count }})
{% else %}Tags {{ user.username }} is following ({{ following_tags_count }})
{% endif %}{% for space_tags, slash_tags, split_tags in following_tags %}
{% for tag in split_tags %} {% comment %}- {{ tag }}
{% endcomment %}
- {{ tag }}
{% comment %}- {{ tag }}
{% endcomment %}
{% endfor %}
{% endfor %}more...