22 lines
319 B
HTML
22 lines
319 B
HTML
|
|
{% extends "seminar/archiv/base.html" %}
|
|
|
|
{% block content %}
|
|
<h1> K obálkování </h1>
|
|
<table>
|
|
<th>
|
|
<td>Jméno</td>
|
|
{% for u in ulohy %}
|
|
<td>{{u.nazev}}
|
|
{% endfor %}
|
|
</th>
|
|
{% for row in kdoco %}
|
|
<tr>
|
|
{% for cell in row%}
|
|
<td>{{cell}}</td>
|
|
{% endfor %}
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
{% endblock content %}
|
|
|