Allow displaying a link and a download for challenges

This commit is contained in:
therbret 2022-10-04 00:11:35 +02:00
parent a983aafba2
commit 1274364953
1 changed files with 4 additions and 3 deletions

7
src/ctfs/templates/ctfs/ctf_info.html Normal file → Executable file
View File

@ -31,7 +31,8 @@
<p>{% trans "Already flagged" %}</p>
{% if ctf.ctf_url %}
<a class="begin-ctf-link" target="_blank" href="{{ ctf.ctf_url }}">{% trans "Start the challenge" %}</a></br>
{% elif ctf.file %}
{% endif %}
{% if ctf.file %}
<a class="begin-ctf-link" target="_blank" href="{{ ctf.file.url }}">{% trans "Download" %}</a></br>
{% endif %}
{% else %}
@ -40,7 +41,8 @@
{% endif %}
{% if ctf.ctf_url %}
<a class="begin-ctf-link" target="_blank" href="{{ ctf.ctf_url }}">{% trans "Start the challenge" %}</a></br>
{% elif ctf.file %}
{% endif %}
{% if ctf.file %}
<a class="begin-ctf-link" target="_blank" href="{{ ctf.file.url }}">{% trans "Download" %}</a></br>
{% endif %}
<form method="post" class="submitflag-form">
@ -48,7 +50,6 @@
<input type="text" name="flag" maxlength="100" required="" id="id_flag">
<input class="form-control" type="submit" value=">">
</form>
{% endif %}
{% endif %}
</div>