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.
23 lines
462 B
23 lines
462 B
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
|
|
<h1>{% block nadpis1a %}Šifrovačka vzaté nápovědy{% endblock nadpis1a %}</h1>
|
|
|
|
<table class="dosla_reseni">
|
|
<tr>
|
|
<th>Timestamp</th>
|
|
<th>Řešitel</th>
|
|
<th>Šifra</th>
|
|
</tr>
|
|
|
|
{% for u in object_list %}
|
|
<tr>
|
|
<td>{{ u.timestamp }}</td>
|
|
<td>{{ u.resitel }}</td>
|
|
<td>{{ u.sifra }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
|
|
{% endblock content %}
|
|
|