{% extends 'base.html' %} {% load i18n %} {% load staticfiles %} {% block header %} {% endblock %} {% block javascript %} {% endblock %} {% block title %}{% trans 'Dashboard' %} – {{ block.super }}{% endblock %} {% block content %}

{% trans 'Dashboard' %} {% trans 'Widgets' %}

{% for widget in widgets %} {% if widget.default_column == 1 %} {{ widget.get_html }} {% endif %} {% endfor %}
{% for widget in widgets %} {% if widget.default_column == 2 %} {{ widget.get_html }} {% endif %} {% endfor %}
{% endblock %}