{% extends "base.html" %}

{% block header %}
{% if authuser.is_admin %}
<h1>Administration</h1>
{% else %}
<h1>Settings</h1>
{% endif %}
{{ super() }}
{% endblock %}

{% block main %}

{% include "admin_all.html" %}

{% if authuser.is_admin %}
{% include "admin_restricted.html" %}
{% endif %}

{{ super() }}

{% endblock %}