generated from PlexSheep/rs-base
35 lines
979 B
HTML
35 lines
979 B
HTML
{% extends "base" %}
|
|
{% block title %}{{ title }}{% endblock %}
|
|
{% block main %}
|
|
<h1 class="text-body-emphasis">{{title}} Admin Interface</h1>
|
|
<p class="fs-5 col-md-8">
|
|
You have reached the {{title}} User
|
|
Interface. This site can be used by the
|
|
contestants see the challenges and their
|
|
progress and hints for that challenge. This
|
|
site is <b>NOT</b> part of the challenge.
|
|
</p>
|
|
<hr class="mb-5">
|
|
<div class="row g-5">
|
|
<div class="col-md-6">
|
|
<h2 class="text-body-emphasis">Challenges</h2>
|
|
<p>
|
|
There are cuttently {{ challenges_amount }} active challenges.
|
|
</p>
|
|
<ul class="list-unstyled ps-0">
|
|
{% for challenge in challenges %}
|
|
<li>
|
|
<a class="icon-link mb-1" href="challenge/{{ challenge.id }}">
|
|
<svg class="bi" width="16" height="16">
|
|
<use xlink:href="#arrow-right-circle" />
|
|
</svg>
|
|
{{ challenge.id }} — {{ challenge.title }} ⇒ {{ challenge.addr }}
|
|
</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
|
|
</div>
|
|
{% endblock %}
|