seznam korektur s hlavickou
This commit is contained in:
parent
cdbe5ff5db
commit
e16ba4f98a
1 changed files with 20 additions and 13 deletions
|
@ -1,13 +1,20 @@
|
|||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>Seznam korektur</title>
|
||||
</head>
|
||||
<body>
|
||||
<ul>
|
||||
{% for pdf in object_list %}
|
||||
<li> <b>{{ pdf.nazev }}</b> <i>{{pdf.komentar}}</i> <a href="/korektury/{{pdf.id}}">{{pdf.pdf.url}}</a> </li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</body>
|
||||
<html>
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block content %}
|
||||
|
||||
<h1>
|
||||
{% block nadpis1a %}
|
||||
Korektury
|
||||
{% endblock nadpis1a %}
|
||||
</h1>
|
||||
|
||||
<ul>
|
||||
{% for pdf in object_list %}
|
||||
<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 %}
|
||||
</ul>
|
||||
|
||||
|
||||
{% endblock content %}
|
||||
|
|
Loading…
Reference in a new issue