{% extends "base.html" %} {% block page_tag %}Site Editor{% endblock %} {% block page_comment %}Edit, add and delete templates, pages and static files.{% endblock %} {% block content %}
Go to {{ site_name }}

Pages

{% for item in pages %} {{item.name}} {% endfor %}

Templates

Add Template
{% for item in templates %} {{item.name}} {% endfor %}

Static Files

Add Static File
{% for item in static_files %} {{item.name}} {% endfor %}

External Libraries

{% for item in library_files %} {{item.name}} {% endfor %}

Global Context

{% for item in globcon_files %} {{item.name}} {% endfor %}

Repos

{% for repo in repos %} {{ repo }} {% endfor %}
{% if admin %}

Users

{% for item in users %} {{item.name}} {% endfor %}
{% endif %}
{% endblock %} {% block js %} {{ super() }} {% endblock %}