{% extends "accounts/_notab.html" %} {% load paginator %} {% block title %}{% if is_owner %}Your bookmarks{% else %}Bookmarks by {{user.username}}{% endif %}{% endblock %} {% block tab_home_active %}{% if is_owner %}active_tab{% endif %}{% endblock %} {% block tab_people_active %}{% if not is_owner %}active_tab{% endif %}{% endblock %} {% block section_content %}

{% if is_owner %}Your bookmarks{% else %}Bookmarks by {{user.username}}{% endif %}

{% if category %}

Bookmarks in "{{category.name}}"

{% else %}

Uncategorized bookmarks

{% endif %} {% if bookmarked_sounds %} {% show_paginator paginator page current_page request "bookmark" %}
{% for bookmark in page.object_list %}
{% with bookmark.sound as sound%}
{% include "sounds/player_small.html" %}
{% endwith %}
{% endfor %}
{% show_paginator paginator page current_page request "bookmark" %} {% else %}

There are no {% if not category %}uncategorized{% endif %} bookmarks {% if category %}in this category{% endif %}

{% endif %}

{% endblock %}