{% load humanize typogrify_tags fretboard_tags cache voting_tags %} {% with request.session.last_seen_timestamp as new_time %} {% for topic in topics %} {# Cache these snippets until mod time changes #} {% cache 360 't_list' topic.id topic.modified_int forum_slug user.is_superuser 2 %}
{% with topic.forum as t_forum %}
{% if not can_add_topic %}

{{ t_forum.name }}

{% endif %}

{{ topic.name|typogrify }}

{% if topic.created %} {{ topic.author.display_name|title|truncatechars:"30" }} started {% endif %}

{% with topic.latest_post as latest %} {% topic_quick_links topic latest last_seen_time %} {% if topic.post_count > 1 %}

{{ latest.author_display_name|title|truncatechars:"30" }} updated

{% endif %} {% endwith %}
{% endwith %}
{% endcache %} {% endfor %} {% endwith %}