Bc. Petr Pecha
9 years ago
1 changed files with 20 additions and 13 deletions
@ -1,13 +1,20 @@ |
|||||
<html> |
{% extends "base.html" %} |
||||
<head> |
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
{% block content %} |
||||
<title>Seznam korektur</title> |
|
||||
</head> |
<h1> |
||||
<body> |
{% block nadpis1a %} |
||||
|
Korektury |
||||
|
{% endblock nadpis1a %} |
||||
|
</h1> |
||||
|
|
||||
<ul> |
<ul> |
||||
{% for pdf in object_list %} |
{% for pdf in object_list %} |
||||
<li> <b>{{ pdf.nazev }}</b> <i>{{pdf.komentar}}</i> <a href="/korektury/{{pdf.id}}">{{pdf.pdf.url}}</a> </li> |
<li> <b>{{ pdf.nazev }}</b> <i>{{pdf.komentar}}</i> <a href="/korektury/{{pdf.id}}">{{pdf.pdf.url}}</a> </li> |
||||
|
{% empty %} |
||||
|
<li> Nejsou žádné korektury ke korekturování. |
||||
{% endfor %} |
{% endfor %} |
||||
</ul> |
</ul> |
||||
</body> |
|
||||
<html> |
|
||||
|
{% endblock content %} |
||||
|
Loading…
Reference in new issue