{% extends 'adminpanel/inc/layout.html'%} {% load static%} {% load query_params %} {% block title%} Widgets{% endblock %} {% block bodyclass%}hold-transition skin-light-blue sidebar-mini{% endblock %} {% block body%}

Widgets List

{% if widget_tabs %} {% for key,val in widget_tabs.items %}
{% csrf_token %} {{val}} (widget_{{key}})
{% if key|widget_template_exists == True %} {% with "adminpanel/widgets/"|add:key|add:".html" as template %} {% with "widget_"|add:key|get_widget as data %} {% include template %} {% endwith %} {% endwith %} {% endif %}
{% endfor %} {% endif %}
{% endblock %}