blob: b22bfcec944e6d88c6b1f0da3df94d66c37996ff (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{% 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-container-small uk-section">
<h1 class="uk-text-center">
Management links
</h1>
{% if manager %}
<a class="uk-button uk-button-primary" href="{{ url_for("staff.tables.index") }}">Table Management</a>
{% else %}
<p>Nothing for you yet, I'm afraid.</p>
{% endif %}
<h1 class="uk-title uk-text-center">
App config
</h1>
<pre>
{{ app_config | safe }}
</pre>
</div>
{% endblock %}
|