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.
31 lines
823 B
31 lines
823 B
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
|
|
<h1>{% block nadpis1a %}M&Mí 30! odpovědi{% endblock nadpis1a %}</h1>
|
|
|
|
<table class="dosla_reseni">
|
|
<tr>
|
|
<th>Jméno</th>
|
|
<th>Přezdívka</th>
|
|
<th>E-mail</th>
|
|
<th>Kdy účastník/org</th>
|
|
<th>Co znamená M&M?</th>
|
|
<th>Co znamená číslo?</th>
|
|
<th>Něco dodat?</th>
|
|
</tr>
|
|
|
|
{% for u in object_list %}
|
|
<tr>
|
|
<td>{{ u.jmeno }}</td>
|
|
<td>{{ u.prezdivka }}</td>
|
|
<td>{{ u.email }}</td>
|
|
<td style="word-break: break-all">{{ u.kdy }}</td>
|
|
<td style="word-break: break-all">{{ u.cojemam }}</td>
|
|
<td style="word-break: break-all">{{ u.cislo }}</td>
|
|
<td style="word-break: break-all">{{ u.dodat }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
|
|
{% endblock content %}
|
|
|