{% extends 'appearance/base.html' %} {% load i18n %} {% load static %} {% load common_tags %} {% load navigation_tags %} {% block title %}{% trans 'Dashboard' %}{% endblock %} {% block javascript %} {% endblock javascript %} {% block content %}

{% trans 'Dashboard' %}


{% if missing_list %}

{% trans 'Getting started' %}

{% trans 'Before you can fully use Mayan EDMS you need the following:' %}
{% for missing in missing_list %}

{{ missing.label }}

{{ missing.description }}

{% endfor %}
{% endif %}
{% trans 'Advanced' %}

{% trans 'Advanced' %}
{% get_dashboard_widgets as dashboard_widgets %}
{% for widget in dashboard_widgets %} {% include 'appearance/dashboard_widget.html' %} {% endfor %}
{% endblock %}