aboutsummaryrefslogtreecommitdiffstats
path: root/templates/main/jams/already.html
diff options
context:
space:
mode:
authorGravatar Gareth Coles <[email protected]>2018-05-19 19:34:44 +0100
committerGravatar Gareth Coles <[email protected]>2018-05-19 19:34:44 +0100
commit44453da722f7be76b50e391ca96d0b71a2c49acd (patch)
tree0ee508b63e0d1382ee68b30d91605988e9aaf80d /templates/main/jams/already.html
parent[Jams] Some amount of public display, but links not ready yet (diff)
[Jams] Signups code is more or less done, just a few things left
Diffstat (limited to 'templates/main/jams/already.html')
-rw-r--r--templates/main/jams/already.html26
1 files changed, 26 insertions, 0 deletions
diff --git a/templates/main/jams/already.html b/templates/main/jams/already.html
new file mode 100644
index 00000000..0baaf4a9
--- /dev/null
+++ b/templates/main/jams/already.html
@@ -0,0 +1,26 @@
+{% 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>
+
+ <p class="uk-alert uk-alert-danger">
+ Thanks for your interest in this code jam! It looks like we already have an application here for you,
+ so please just sit back, relax, and we'll let you know whether you've been selected for this code
+ jam when the time comes.
+ </p>
+
+ <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 %}