{% extends "forum/base.html" %} {% load i18n %} {% block title %}{% trans "Forum" %}{% endblock %} {% block breadcrumbs %}{% trans "Forum" %}{% endblock %} {% block content %}
| {% trans "Forum" %} | {% trans "Last Post" %} |
|---|---|
|
{{ forum.title }} {{ forum.description }} {{ forum.threads }} {% trans "thread" %}{{ forum.threads|pluralize }}, {{ forum.posts }} {% trans "post" %}{{ forum.posts|pluralize }} |
{% if forum.forum_latest_post %}{{ forum.forum_latest_post.time|timesince }} {% trans "ago by" %} {{ forum.forum_latest_post.author }} ({% trans "view" %}){% else %}{% trans "No Posts" %}{% endif %} |