{% extends "base.html" %} {% load i18n %} {% load range %} {% block extra_head %} {{form.media}} {% endblock %} {% block content %}
{% for lbl, dashboard in items %}

{{lbl}}

{% trans "Numbers" %}

{% trans "Total:" %} {{dashboard.total_number}}

{% for idx, lbl, values in dashboard.values %} {% for value in values %}{% endfor%} {% endfor%}
{{lbl}}{{value}}
{% if dashboard.years %}

{% trans "By years" %}

{% endif %} {% if dashboard.operation_average %}

{% trans "By operations" %}

{% endif %}

{% trans "Created last" %}

{% for item in dashboard.lasts %}{% endfor %}
{{lbl}}{% trans "Created" %}
{{item}} {{item.history_date}} {% if item.get_show_url %}{%trans "Show"%}{%endif%}

{% trans "Recent changes" %}

{% for item in dashboard.recents %}{% endfor %}
{{lbl}}{% trans "Modified" %}
{{item}} {{item.history_date}} {% if item.get_show_url %}{%trans "Show"%}{%endif%}
{% endfor%}

{% trans "Users" %}

{% for user_type in ishtar_users.types %} {% endfor%}
{% trans "User type" %}{% trans "Number" %}
{{user_type.person__person_type__label}} {{user_type.number}}
{% endblock %}