{% extends 'base.html' %} {% block header %}
{% block title %}Site Administration{% endblock %}
{% endblock %} {% block content %}
Front Log
Front change history
{% for front in front_log %}

{{ get_datetime_str(front[2]) }} - {{ get_member(front[1])[3] }}{% if front[3] %} (ended: {{ get_datetime_str(front[3]) }}) | delete{% endif %}

{% endfor %}
Backup
Export entire system as JSON (without images)
Export entire system as ZIP (with images)
Import system from JSON

You must only run full system imports on a fresh database


Import system from ZIP

You must only run full system imports on a fresh database


WIP ZONE
Site Users
These are the usernames that can log in to the site
{% for user in users %}

{{ user[1] }}{% if user[0]!=g.user[0] %} | Delete user{% endif %}

{% endfor %}

Add New User

Admin Log
Actions taken by registered users
Site Theme
Choose the overall theme for the site here
{% endblock %}