aboutsummaryrefslogtreecommitdiffstats
path: root/templates/main/jams/banned.html
blob: fa47c1ec8fda9543faad3f7407c24338ccc9786e (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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{% extends "main/base.html" %}
{% block title %}Code Jams | Banned{% endblock %}
{% block og_title %}Code Jams | Banned{% endblock %}

{% block content %}
<div class="uk-section">
    <div class="uk-container uk-container-small">
        <h1 class="uk-header uk-article-title">
            Code Jam {{ jam.number }}: {{ jam.title }}
        </h1>
        <p class="uk-article-meta">
            Bring the thunder!
        </p>

        {% if infraction.number == -1 %}
            <p class="uk-alert uk-alert-danger">
                Thanks for your interest in this code jam! Unfortunately, due to your previous actions, you have been
                permanently banned from participating in our code jams.
                <br />
                <br />
                The reason given is: <strong>{{ infraction.reason }}</strong>
                <br />
                <br />
                If you feel that this is a mistake, please feel free to contact one of the admins on Discord.
            </p>
        {% else %}
            <p class="uk-alert uk-alert-danger">
                Thanks for your interest in this code jam! Unfortunately, due to your previous actions, you have been
                temporarily banned from participating in our code jams.
                <br />
                <br />
                The reason given is: <strong>{{ infraction.reason }}</strong>
                <br />
                <br />
                If you feel that this is a mistake, please feel free to contact one of the admins on Discord.
            </p>
        {% endif %}

        <a class="uk-button uk-button-secondary uk-align-center" href="{{ url_for("main.jams.index") }}">
            <i class="uk-icon fa-fw far fa-arrow-left"></i> &nbsp;Back to all code jams
        </a>
    </div>
</div>
{% endblock %}