{% extends "base.html" %} {% block title %}Tracked Threads — Multithreaded{% endblock %} {% block head %}{% endblock %} {% block header %}{% include "partials/site_header.html" %}{% endblock %} {% block content %}
(How tracking works)
{% if threads.is_empty() %}
You are not tracking any threads. Click "track" on a thread to follow it.
{% else %} {% for t in threads %} 0 && t.has_mention %} class="unread mentioned"{% else if t.unread_count > 0 %} class="unread"{% else if t.has_mention %} class="mentioned"{% endif %}> {% endfor %}
Thread Community New
{% if t.has_mention %}@ {% endif %} {{ t.thread_title }} {{ t.community_name }} {% if t.unread_count > 0 %} {{ t.unread_count }} new {% else %} — {% endif %}
{% endif %}
{% endblock %}