{% extends 'users/base.html' %} {% set title = _('Manage watch list') %} {% set classes = 'edit-watches' %} {% set active = 'edit-watches' %} {% set crumbs = [(None, title)] %} {% block breadcrumbs %}{% endblock %} {% block content %}

{{ title }}

{% if watch_list %}

{% trans %} Below is a list of items that you have watched. Checked items are items you are currently watching and unchecked items are no longer being watched. {% endtrans %}

{% csrf_token %} {% for w in watch_list %}
{% endfor %}
{{ watch_list|paginator }} {% else %}

{{ _('You are not currently watching anything.') }}

{% endif %} {% endblock %}