BioTorrents.de’s version of Gazelle
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1234567891011 |
- {% from 'macro/form.twig' import selected %}
- {% if prior %}
- <form class="edit_form" style="float: right;" action="contest.php?action=leaderboard" method="post">
- <select name="leaderboard">
- {% for p in prior %}
- <option value="{{ p.id }}"{{ selected(p.id == current) }}>{{ p.name }}</option>
- {% endfor %}
- </select>
- <input type="submit" id="view" value="view" />
- </form>
- {% endif %}
|