{% extends "forum_base.html" %}{% load i18n %} {% block title %}{% trans "Forums" %}{% endblock %} {% block content %} {% for forum in object_list %} {% with forum.forum_latest_post as latest_post %} {% endwith %} {% endfor %}
{% trans "Forum" %} {% trans "Last Post" %}

{{ forum.title }}
{% blocktrans with forum.threads as thread_count and forum.posts as post_count %}{{ thread_count }} threads, {{ post_count }} posts{% endblocktrans %}

{{ forum.description }}

{% if latest_post %}{% blocktrans with latest_post.time|timesince as time and latest_post.author as author %}{{ time }} ago by {{ author }}{% endblocktrans %} ({% trans "view" %}){% else %}{% trans "No Posts" %}{% endif %}
{% if request.user.is_authenticated %}

{% trans "Update Subscriptions" %}

{% endif %} {% endblock %}