Skip to content
Snippets Groups Projects

Place editing

Merged Jiří Setnička requested to merge jirka/schools into master
3 files
+ 10
6
Compare changes
  • Side-by-side
  • Inline

Files

+ 5
3
@@ -15,14 +15,16 @@
<tr>
<th>Role
<th>Oblast
<th>Roč.
<th>Kat.
<th>Kolo
{% for role in roles %}
<tr>
<td>{{ roles_by_type[role.role].name }}
<td><a href='{{ url_for('org_place', id=role.place_id) }}'>{{ role.place_object.name }}</a>
<td>{{ role.cat or '–' }}
<td>{{ role.round_id or '–' }} {# FIXME #}
<td><a href='{{ url_for('org_place', id=role.place_id) }}'>{{ role.place.name }}</a>
<td>{{ role.year or '–' }}
<td>{{ role.category or '–' }}
<td>{{ role.seq or '–' }}
{% endfor %}
</table>
{% endif %}
Loading