Web M&M
https://mam.matfyz.cz
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.2 KiB
41 lines
1.2 KiB
{% for novinka in object_list %}
|
|
{# pripravene div-y na stylovani#}
|
|
<div>
|
|
{% if not novinka.zverejneno and user.je_org %}
|
|
<div class="mam-org-only">
|
|
<ul>
|
|
<li><a href="/admin/seminar/novinky/{{novinka.pk}}">Upravit novinku</a>
|
|
</ul>
|
|
{% endif %}
|
|
{% if novinka.zverejneno or user.je_org %}
|
|
{# datum #}
|
|
<div class=novinka_datum>{{novinka.datum}}</div>
|
|
{# text #}
|
|
{{ novinka.text | safe }}
|
|
{# obrazek #}
|
|
{% if novinka.obrazek %}
|
|
<div class='novinka_obrazek'>
|
|
{% if novinka.obrazek.height > novinka.obrazek_maly.height %}
|
|
<a href='{{ novinka.obrazek.url }}'>
|
|
<img src='{{ novinka.obrazek.url }}' height='{{ novinka.obrazek_maly.height }}'>
|
|
</a>
|
|
{% else %}
|
|
<img src='{{ novinka.obrazek.url }}' height='{{ novinka.obrazek_maly.height }}'>
|
|
{% endif%}
|
|
</div>
|
|
{% endif %}
|
|
{# autor #}
|
|
<div class=novinka_autor>
|
|
{{novinka.autor.osoba.jmeno}}
|
|
{% if novinka.autor.osoba.prezdivka%}
|
|
„{{novinka.autor.osoba.prezdivka}}“
|
|
{% endif %}
|
|
{{novinka.autor.osoba.prijmeni}}
|
|
</div>
|
|
{% endif %}
|
|
{% if not novinka.zverejneno and user.je_org %}
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
{% endfor%}
|
|
|
|
|