{# vim: set ts=2 et sts=2 sw=2: #} {% extends "dashboards/base.html" %} {% from "forums/includes/forum_macros.html" import thread_list with context %} {% set title = _('Contributor Forums Dashboard') %} {% set dashboard_id = 'forums-dashboard' %} {% set active_tab = 'review' %} {% set styles = ('wiki', 'forums') %} {% block dashboard_content %} {% include 'dashboards/includes/announcement_list.html' %} {% if threads.object_list %}
  1. {{ _('Type') }}
  2. {{ _('Title') }}
  3. {{ _('Author') }}
  4. {{ _('Replies') }}
  5. {{ _('Last Post') }}
{{ thread_list(threads) }} {% else %}

{{ _("You haven't participated in any contributor forum threads yet.") }}

{% endif %} {% endblock %}