Skip to content
Snippets Groups Projects

Draft: Dělená kola

Closed Jiří Setnička requested to merge jirka/delena-kola into devel
1 file
+ 9
6
Compare changes
  • Side-by-side
  • Inline
@@ -14,12 +14,15 @@
</thead>
{% for r in rounds %}
<tr>
<td><a href='{{ url_for('org_round', id=r.round_id) }}'>{{ r.round_code() }}</a>
<td>{{ r.year }}
<td>{{ r.category }}
<td>{{ r.seq }}
<td>{{ level_names[r.level] }}
<td>{{ r.name }}
{% if not r.is_subround() %}
{% set rowspan = " rowspan=%d" % (subround_counts[r.round_id] + 1) if subround_counts[r.round_id] else "" %}
<td{{ rowspan }}><a href='{{ url_for('org_round', id=r.round_id) }}'>{{ r.round_code() }}</a>
<td{{ rowspan }}>{{ r.year }}
<td{{ rowspan }}>{{ r.category }}
<td{{ rowspan }}>{{ r.seq }}
<td{{ rowspan }}>{{ level_names[r.level] }}
{% endif %}
<td><a href='{{ url_for('org_round', id=r.round_id) }}'>{{ r.name }}</a>
<td class='rstate-{{r.state.name}}'>{{ r.state.friendly_name() }}
{% endfor %}
</table>
Loading