{% extends "sora/layout.html" %} {% load i18n %} {% import "_forms.html" as form_theme with context %} {% import "sora/macros.html" as macros with context %} {% block title %}{{ macros.page_title(title=_('Threads you are watching')) }}{% endblock %} {% block content %} {% if message %}{{ macros.draw_message(message) }}{% endif %}
{{ pager() }}
{% if threads %} {% for thread in threads %} {% endfor %}
  {% trans %}Thread{% endtrans %} {% trans %}Forum{% endtrans %} {% trans %}Replies{% endtrans %} {% trans %}Last Poster{% endtrans %}
{% if not thread.is_read %}{{ thread.name }}{% else %}{{ thread.name }}{% endif %} {% if not thread.is_read -%} {%- else -%} {%- endif %}
    {% if thread.send_email %}
  • {% endif %} {% if thread.closed %}
  • {% endif %} {% if thread.moderated %}
  • {% endif %} {% if thread.deleted %}
  • {% endif %}
{{ thread.forum.name }} {{ thread.replies|intcomma }} {% if thread.last_poster_ignored -%} {% if settings.avatars_on_threads_list %} {% endif %}{% trans %}Ignored Member{% endtrans %} {%- elif thread.last_poster_id -%} {% if settings.avatars_on_threads_list %} {% endif %}{{ thread.last_poster_name }} {%- else -%} {% if settings.avatars_on_threads_list %} {% endif %}{{ thread.last_poster_name }} {%- endif %}
{{ pager() }}
{% else %}

{% if new -%} {% trans %}There are no unread threads that you are watching.{% endtrans %} {%- else -%} {% trans %}You are not watching any threads.{% endtrans %} {%- endif %}

{% endif %} {% endblock %} {% block javascripts -%} {{ super() }} {%- if user.is_authenticated() and list_form %} {% endif %} {%- endblock %} {% macro pager() -%} {%- endmacro %}