{% extends "admin/base_site.html" %} {% load cache gipsy_dashboard %} {% block content %} {% if user.is_active and user.is_staff %}
{% gipsy_dashboard_cache_time as cache_time %} {% cache cache_time gipsy_dashboard %} {% 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 %} {% endcache %}
{% endif %} {% endblock %} {% block footer %}{% endblock %}