blob: 157bdf21cdb1bf422db45dc0b3931e5742302c54 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{% extends "main/base.html" %}
{% block title %}Staff | Home{% endblock %}
{% block og_title %}Staff | Home{% endblock %}
{% block og_description %}Landing page for the staff management area{% endblock %}
{% block content %}
<div class="uk-container uk-section">
<h1 class="uk-title uk-text-center">
App config
</h1>
<pre>
{{ app_config | safe }}
</pre>
</div>
{% endblock %}
|