{% extends "base.html" %} {% load display_sound %} {% block title %}Activity stream{% endblock title %} {% block tab_home_active %}active_tab{% endblock %} {% block content %}

Activity stream

In this page you'll see new sounds uploaded by users you follow and new sounds tagged with the tags you follow.
You can configure email notifications for updates in your activity stream through your settings page.

{% csrf_token %} Select time period:
{% if not errors_getting_data %}

New sounds by users you follow

{% if users_sounds %} Go to sounds by tags you follow {% endif %} {% if not users_sounds %}

No updates...

{% else %} {% for user, sound_objs, more_url_params, more_count, new_count in users_sounds %}
{% for sound_obj in sound_objs %} {% display_sound sound_obj %} {% endfor %} {% if more_count > 0 %}

 See all results ({{ more_count }} more)

{% endif %}
{% include "accounts/active_user.html" %} {% comment %}Go to Top{% endcomment %}
{% endfor %} {% endif %}

New sounds with tags you follow

{% if users_sounds %} Go to sounds by users you follow {% endif %} {% if not tags_sounds %}

No updates...

{% else %} {% for tags, sound_objs, more_url_params, more_count, new_count in tags_sounds %}
{% for sound_obj in sound_objs %} {% display_sound sound_obj %} {% endfor %} {% if more_count > 0 %}

 See all results ({{ more_count }} more)

{% endif %}
    {% for tag in tags %}
  • {{ tag }}
  • {% endfor %}
{% endfor %} {% endif %}
{% else %}

An error occurred while getting the requested data. Please try again later.

{% endif %} {% endblock %}