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.

list.twig 786B

12345678910111213141516171819202122232425
  1. {% if list is not empty %}
  2. {% for contest in list %}
  3. {% if loop.first %}
  4. <div class="box pad">
  5. <table>
  6. <tr class="colhead">
  7. <td>Name</td>
  8. <td>Contest Type</td>
  9. <td>Begins</td>
  10. <td>Ends</td>
  11. </tr>
  12. {% endif %}
  13. <tr class="row{{ cycle(['a', 'b'], loop.index0) }}">
  14. <td>{%- if current == contest.id -%}&nbsp;{{ pointer|raw }}{%- endif -%}
  15. <a href="contest.php?action=admin&id={{ contest.id }}">{{ contest.name }}</a></td>
  16. <td>{{ contest.contestType }}</td>
  17. <td>{{ contest.dateBegin }}</td>
  18. <td>{{ contest.dateEnd }}</td>
  19. </tr>
  20. {% if loop.last %}
  21. </table>
  22. {% endif %}
  23. {% endfor %}
  24. </div>
  25. {% endif %}