{% extends "admin/base.html" %} {% block title %}Widgets - Focomy{% endblock %} {% block header_title %}Widgets{% endblock %} {% block content %}

Widget Editor

{% for a in areas %} {{ a.label }} {% endfor %}
{% if widgets %}
{% for widget in widgets %}
{{ widget.title or "(No title)" }} {{ widget.widget_type }} {% if not widget.is_active %} Inactive {% endif %}
{% endfor %}
{% else %}

No widgets in this area.

Click "Add Widget" to create one.

{% endif %}
{% endblock %}