{% extends "admin_base.html" %} {% block title %}Manage Sections{% endblock %} {% block admin_content %}

Add New Section

Existing Sections

{% for section in sections %}
{% if section.icon %} {{ section.name }} {% endif %}

{{ section.name }}

{% if section.description %}

{{ section.description }}

{% endif %}
Edit
{% else %}

No sections added yet.

{% endfor %}
{% endblock %}