{% extends "base.html" %} {% from "dashboards/includes/macros.html" import localization_sidebar_nav %} {% from "dashboards/includes/macros.html" import product_choice_list with context %} {% set title = _('Aggregated Localization Metrics') %} {% set scripts = ('wiki', 'wiki.dashboard',) %} {% set crumbs = [(None, title)] %} {% set classes = 'aggregated-metrics' %} {% set product_slug = product.slug if product else 'null' %} {% block content %}

{{ title }}

{{ product_choice_list(products, product, url('dashboards.aggregated_metrics')) }}
{{ _('The dashboard data is being loaded. This may take some time.') }}
{# Double % required below to escape % for gettext #}

{{ _('Top 100 Articles: %% Localized') }}

{# Double % required below to escape % for gettext #}

{{ _('Top 20 Articles: %% Localized') }}

{# Double % required below to escape % for gettext #}

{{ _('All Articles: %% Localized') }}

{{ _('Active Contributors') }}

{% endblock %} {% block side_top %} {{ localization_sidebar_nav(settings.WIKI_DEFAULT_LANGUAGE, 'aggregated', True) }}
{% endblock %}