Bc. Petr Pecha
9 years ago
3 changed files with 46 additions and 16 deletions
@ -1,9 +0,0 @@ |
|||||
{% block body %} |
|
||||
{% for novinka in object_list %} |
|
||||
<p> |
|
||||
Tady bude novinka. |
|
||||
{{ novinka.text }} |
|
||||
</p> |
|
||||
<img src='{{ novinka.obrazek.url }}' |
|
||||
{% endfor%} |
|
||||
{% endblock %} |
|
@ -1,7 +1,46 @@ |
|||||
{% extends 'base.html' %} |
{% extends 'base.html' %} |
||||
|
|
||||
HU! |
|
||||
{% block content %} |
{% block content %} |
||||
Tady bude nadpis pro novinky. |
|
||||
{% include 'seminar/novinky.html' %} |
{# Uvitaci text #} |
||||
|
<h2> |
||||
|
{% block nadpis1a %}{% block nadpis1b %} |
||||
|
Tož vitajte! |
||||
|
{% endblock %}{% endblock %} |
||||
|
</h2> |
||||
|
<p> Uvítací text či-co.</p> |
||||
|
|
||||
|
{# Novinky #} |
||||
|
<h2>Novinky</h2> |
||||
|
|
||||
|
{% for novinka in object_list %} |
||||
|
{# pripravene div-y na stylovani#} |
||||
|
<div> |
||||
|
{# datum #} |
||||
|
<div><b>{{novinka.datum}}</b></div> |
||||
|
{# text #} |
||||
|
{% autoescape off %}{{novinka.text}}{% endautoescape %} |
||||
|
{# obrazek #} |
||||
|
{% if novinka.obrazek %} |
||||
|
<div> |
||||
|
<img src='{{novinka.obrazek.url}}' |
||||
|
height=' |
||||
|
{% if novinka.obrazek.height > 200 %} {# vyska obrazku natvrdo #} |
||||
|
200 |
||||
|
{% else %} |
||||
|
{{novinka.obrazek.height}} |
||||
|
{% endif%} |
||||
|
'> |
||||
|
</div> |
||||
|
{% endif %} |
||||
|
{# autor #} |
||||
|
<div>{{novinka.autor.first_name}} |
||||
|
{% if novinka.autor.organizator.prezdivka%} |
||||
|
„{{novinka.autor.organizator.prezdivka}}“ |
||||
|
{% endif %} |
||||
|
{{novinka.autor.last_name}} |
||||
|
</div> |
||||
|
</div> |
||||
|
{% endfor%} |
||||
{% endblock %} |
{% endblock %} |
||||
|
Loading…
Reference in new issue