Web M&M
https://mam.matfyz.cz
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.
40 lines
976 B
40 lines
976 B
{% load static %}
|
|
<html lang='cs'>
|
|
<head>
|
|
<title>Seznam účastníků</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" type="text/css" href="{% static 'css/printtable.css' %}" />
|
|
</head>
|
|
<body>
|
|
|
|
<h1>
|
|
{% with object_list|first as afirst %}
|
|
{{afirst.soustredeni.misto}}
|
|
{% endwith %}
|
|
- účastníci
|
|
</h1>
|
|
<table>
|
|
<tr>
|
|
<th nowrap>Jméno</th>
|
|
<th nowrap>Maturita</th>
|
|
<th nowrap>Mobil</th>
|
|
<th nowrap>Poznámka</th>
|
|
<th class="fill"></th>
|
|
</tr>
|
|
{% for sous_ucast in object_list %}
|
|
<tr>
|
|
<td nowrap>{{sous_ucast.resitel}}</td>
|
|
<td nowrap>{{sous_ucast.resitel.rok_maturity}}</td>
|
|
<td nowrap>{{sous_ucast.resitel.osoba.telefon}}</td>
|
|
<td nowrap>{{sous_ucast.poznamka}}</td>
|
|
<td class="fill"></td>
|
|
|
|
</tr>
|
|
|
|
{% empty %}
|
|
Žádní účastníci nebyli...
|
|
{% endfor %}
|
|
</table>
|
|
</body>
|
|
</html>
|
|
|
|
|