{# vim: set ts=2 et sts=2 sw=2: #} {% extends "base.html" %} {% from "dashboards/includes/macros.html" import print_readout %} {% set title = _('Contributor Dashboard') %} {% set scripts = ('wiki',) %} {% 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 != current_locale_name %}
{% endif %} {% for readout in readouts.itervalues() %} {{ print_readout(readout, 'dashboards.contributors_detail', locale=default_locale) }} {% endfor %}
{% endblock %} {% block side %}
{% with locale=request.locale %} {% include 'dashboards/includes/watch_locale.html' %} {% include 'dashboards/includes/watch_approved.html' %} {% endwith %} {% if request.locale != settings.WIKI_DEFAULT_LANGUAGE %} {% with locale=settings.WIKI_DEFAULT_LANGUAGE, is_watching_approved=is_watching_approved_default %} {% include 'dashboards/includes/watch_approved.html' %} {% endwith %} {% endif %}
{% endblock %}