{% extends 'admin/master.html' %} {% block body %}

Administration

This is the administration section of the website. You can create new content, edit your user details, and edit content that you previously created.

User

Edit your user account settings.

{% if current_user.has_role('editor') %}

Create & Edit Content

Publish new content to the website, and edit existing content (only visible to editor accounts).

{% endif %} {% if current_user.has_role('admin') %}

Admin functions

User account managemnet and other settings (only visible to admin accounts).

{% endif %} {% endblock %}