{% extends "forum/base.html" %} {% load i18n %} {% block title %}{% trans "Forum" %}{% endblock %} {% block breadcrumbs %}{% trans "Forum" %}{% endblock %} {% block content %}

{% trans "View Forums" %}

{% for forum in object_list %} {% endfor %}
{% 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 %}
{% endblock %} {% block aside-info %}
{% trans "Use the discussion forums to inform us about problems with this site, missing features or just discuss general mldata issues." %}
{% endblock %}