{% extends "projector/base_projector.html" %} {% load tags %} {% load i18n %} {% load staticfiles %} {% block header %} {% endblock %} {% block content %}

{% trans 'Dashboard' %}

{% if perms.projector.can_manage_projector %}
{% trans "Adjust projector view" %}:
{% endif %}
{% for name, widget in widgets.items %} {% if widget.default_column == 1 %}
{% trans widget.get_title %}
{{ widget.html }}
{% endif %} {% endfor %}
{% for name, widget in widgets.items %} {% if widget.default_column == 2 %}
{% trans widget.get_title %}
{{ widget.html }}
{% endif %} {% endfor %}
{% endblock %}