aboutsummaryrefslogtreecommitdiffstats
path: root/templates/staff/index.html
blob: 31fddceb190ea25c5c72c2312e8bd24995304833 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{% 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>

        <a class="uk-button uk-button-primary" href="{{ url_for("staff.jams.index") }}">Code Jams</a>
        {% if manager %}
            <a class="uk-button uk-button-primary" href="{{ url_for("staff.tables.index") }}">Table Management</a>
        {% endif %}

        <h1 class="uk-title uk-text-center">
            App config
        </h1>
        <pre>
    {{ app_config | safe }}
        </pre>
    </div>
{% endblock %}