{# vim: set ts=2 et sts=2 sw=2: #} {% extends "base.html" %} {% from "dashboards/includes/macros.html" import print_readout, print_subscription_menu with context %} {% set title = _('Contributor Dashboard') %} {% set scripts = ('wiki', 'dashboard.helpful', 'highcharts',) %} {% set styles = ('wiki',) %} {% set crumbs = [(None, title)] %} {# TODO: Move required dashboard styles/scripts out of wiki.css into their own or refactor up? #} {% block content %}

{{ title }}

{% if default_locale_name != request_locale_name %}
{% endif %} {% for readout in readouts.itervalues() %} {{ print_readout(readout, locale=default_locale) }} {% endfor %} Show Aggregate Helpfulness Chart
{% endblock %} {% block side %} {% if not user.is_anonymous() %} {{ print_subscription_menu(default_locale_name, request_locale_name, on_default_locale, is_watching_default_locale, is_watching_other_locale, is_watching_default_approved, is_watching_other_approved, settings.WIKI_DEFAULT_LANGUAGE) }} {% endif %} {% endblock %}