Browse Source

seznam korektur s hlavickou

remotes/origin/opraf
Bc. Petr Pecha 9 years ago
parent
commit
e16ba4f98a
  1. 33
      korektury/templates/korektury/seznam.html

33
korektury/templates/korektury/seznam.html

@ -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 %}
<ul> Korektury
{% for pdf in object_list %} {% endblock nadpis1a %}
<li> <b>{{ pdf.nazev }}</b> <i>{{pdf.komentar}}</i> <a href="/korektury/{{pdf.id}}">{{pdf.pdf.url}}</a> </li> </h1>
{% endfor %}
</ul> <ul>
</body> {% for pdf in object_list %}
<html> <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…
Cancel
Save