{% extends 'admin/master.html' %} {% block body %}
This is the administration section of the website. You can create new content, edit your user details, and edit content that you previously created.
Edit your user account settings.
{% if current_user.has_role('editor') %}Publish new content to the website, and edit existing content (only visible to editor accounts).
{% endif %} {% if current_user.has_role('admin') %}User account managemnet and other settings (only visible to admin accounts).
{% endif %} {% endblock %}