{% extends "forums/base.html" %} {% from 'includes/common_macros.html' import for_contributors_sidebar %} {% set title = _('Contributor Discussions') %} {% set crumbs = [(None, title)] %} {% set canonical_url = canonicalize(viewname='forums.forums') %} {% if forums.number > 1 %} {% set canonical_url = canonical_url|urlparams(page=forums.number) %} {% endif %} {% set ga_content_group = "list-contributor-forums" %} {% block content %}

{{ title }}

{% if forums.object_list %} {% for forum in forums.object_list %} {% endfor %}
{{ _('Name') }} {{ _('Threads') }} {{ _('Last Post') }}
{{ forum.name }}
{{ forum.description|safe }}
{{ forum.thread_count }} {% if forum.last_post %} {{ datetimeformat(forum.last_post.created) }}
{{ _('by {username}')|fe(profile_url=profile_url(forum.last_post.author), username=display_name(forum.last_post.author)) }} {% else %} {# Not localized because it's not worth localizers time. #} No posts. {% endif %}
{{ forums|paginator }} {% else %}{# if forums #} {# Not localized because it's not worth localizers time. #}

There are no forums. You should create some!

{% endif %}
{% endblock %} {% block side %} {{ for_contributors_sidebar(user, settings.WIKI_DEFAULT_LANGUAGE, active='forums') }} {% endblock %}