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.

switcher.twig 408B

1234567891011
  1. {% from 'macro/form.twig' import selected %}
  2. {% if prior %}
  3. <form class="edit_form" style="float: right;" action="contest.php?action=leaderboard" method="post">
  4. <select name="leaderboard">
  5. {% for p in prior %}
  6. <option value="{{ p.id }}"{{ selected(p.id == current) }}>{{ p.name }}</option>
  7. {% endfor %}
  8. </select>
  9. <input type="submit" id="view" value="view" />
  10. </form>
  11. {% endif %}