{% extends 'core/base.html' %} {% load i18n static dashboard any_js %} {% block browser_title %}{% blocktrans %}Edit dashboard{% endblocktrans %}{% endblock %} {% block page_title %}{% blocktrans %}Edit dashboard{% endblocktrans %}{% endblock %} {% block content %}

info On this page you can arrange your personal dashboard. You can drag any items from "Available widgets" to "Your Dashboard" or change the order by moving the widgets. After you have finished, please don't forget to click on "Save".

{% csrf_token %} {{ formset.management_form }} {% for form in formset %} {{ form.as_p }} {% endfor %} {% include "core/partials/save_button.html" %}
{% trans "Available widgets" %}
{% for widget in not_used_widgets %} {% include "core/partials/edit_dashboard_widget.html" %} {% endfor %}
{% trans "Your dashboard" %}
{% for widget in widgets %} {% include "core/partials/edit_dashboard_widget.html" %} {% endfor %}
{% endblock %}