{% extends "admin/base.html" %} {% block title %}Dashboard{% endblock %} {% block content %}

Content

Edit the sections and topics shown on the public site.

+ Section + Topic
{% if not sections %}
No sections yet. Start by adding one.
{% endif %} {% for section in sections %}
§{{ '%02d' % section.num }}

{{ section.title }}

{% if section.subtitle %}{{ section.subtitle }}{% endif %}
Edit + Topic
{% if section.topics %} {% else %}

No topics in this section yet.

{% endif %}
{% endfor %} {% endblock %}