{% extends "forum/base.html" %} {% load i18n %} {% block forum_content %} {% for category in category_set %}
Forum | {% trans "Threads" %} | {% trans "Replies" %} | {% trans "Last Thread" %} |
---|---|---|---|
{{ forum }} | {{ forum.threads_counter }} | {{ forum.replies_counter }} | {% with forum.latest_thread as latest_thread %} {% if latest_thread %} {{ latest_thread }} {% else %}-{% endif %} {% endwith %} |
{% trans "Click here to add a" %} {% trans "new forum" %} | - | - | - |
{% trans "Please, add a category" %} {% trans "through this link" %}.
{% endif %} {% endfor %} {% endblock %}