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

{% trans 'Home' %}


{% 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 %}
{% get_menu_links 'front page menu' as resolved_links %} {% with 'navigation/large_button_link.html' as link_template %} {% with 'col-xs-12 col-sm-6 col-md-4 col-lg-3' as div_class %} {% for object_navigation_links in resolved_links %} {% include 'navigation/generic_navigation.html' %} {% endfor %} {% endwith %} {% endwith %}
{% trans 'Advanced' %}
{% if search_terms %} {% include 'appearance/generic_list_subtemplate.html' %} {% endif %}
{% endblock %}