|
|
@ -58,16 +58,16 @@ |
|
|
|
{# Účastníci #} |
|
|
|
<h2>Soustředění se zúčastnili tito účastníci:</h2> |
|
|
|
<p> |
|
|
|
{% for i in soustredeni.soustredeni_ucastnici_set.all %} |
|
|
|
{{i.resitel}}{% if forloop.last %}.{% else %},{% endif %} |
|
|
|
{% for i in soustredeni.ucastnici.all %} |
|
|
|
{{i}}{% if forloop.last %}.{% else %},{% endif %} |
|
|
|
{% empty %} |
|
|
|
Nic! |
|
|
|
{% endfor %} |
|
|
|
</p> |
|
|
|
<h2>Soustředění se účastnili tito organizátoři:</h2> |
|
|
|
<p> |
|
|
|
{% for i in soustredeni.soustredeni_organizatori_set.all %} |
|
|
|
{{i.organizator}}{% if forloop.last %}.{% else %},{% endif %} |
|
|
|
{% for i in soustredeni.organizatori.all %} |
|
|
|
{{i}}{% if forloop.last %}.{% else %},{% endif %} |
|
|
|
{% empty %} |
|
|
|
Nic! |
|
|
|
{% endfor %} |
|
|
|