{% extends "admin/base_site.html" %} {% block content %} {% if user.is_active and user.is_staff %}
{% if dashboard.has_rows %} {% for row in dashboard.rows %}
{% include 'gipsy/dashboard/widgets_list.html' with widgets=row %}
{% endfor %} {% else %} {% include 'gipsy/dashboard/widgets_list.html' with widgets=dashboard.widgets %} {% endif %}
{% endif %} {% endblock %} {% block footer %}{% endblock %}