Začátek template zadávátka problémů [WIP]
This commit is contained in:
parent
9daeeedda3
commit
7969f474d1
1 changed files with 24 additions and 0 deletions
24
seminar/templates/seminar/org/vyroba_problemu.html
Normal file
24
seminar/templates/seminar/org/vyroba_problemu.html
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
{% extends "base.html" %}
|
||||||
|
|
||||||
|
{% block content %}
|
||||||
|
<h1>
|
||||||
|
{% block nadpis1a %}
|
||||||
|
Zadané problémy
|
||||||
|
{% endblock %}
|
||||||
|
</h1>
|
||||||
|
{# Přehled problémů #}
|
||||||
|
{# TODO: filtr na stavy #}
|
||||||
|
<table><form>
|
||||||
|
{% for obj in object_list %}
|
||||||
|
<tr>
|
||||||
|
<td>butonek</td>
|
||||||
|
<td>{{ obj.nazev }}</td>
|
||||||
|
</tr>
|
||||||
|
{% endfor %}
|
||||||
|
</form></table>
|
||||||
|
|
||||||
|
<hrule>
|
||||||
|
{# Přidat problém #}
|
||||||
|
|
||||||
|
|
||||||
|
{% endblock content %}
|
Loading…
Reference in a new issue