{% extends "layouts/default.html" %} {% block title %}Manage you archive.{% endblock %} {% block content %}
profile Cat

{{user.display-name}}

Storage

{% for item in storage-files %}

{{item.name | safe}}

{{item.name}} {% if roles.administrator %}
{% endif %}
{% endfor %}

Archive

{% for entry in archive-entries %}

{{entry.title | safe}}

{{entry.title}} Edit {{entry.title}} {% if roles.administrator %}
{% endif %}
{% endfor %}

Pages

{% for page in pages %} {% if page.can-delete == 1 %}

{{page.title | safe}}

{{page.title}} Edit {{page.title}} {% if roles.administrator %}
{% endif %}
{% endif %} {% endfor %}

Accounts and Settings

{% if roles.administrator %} Edit Profile Account Details Manage Accounts Accounts Index Site Settings Site Settings {% endif %}
{% endblock %}