mamweb/soustredeni/templates/soustredeni/export_do_abstraktu.html

17 lines
607 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends "base.html" %}
{% load tex %}
{% block nadpis1a %}
Soustředění export do abstraktů
{% endblock %}
{% block content %}
<h1>Export do abstraktů Soustředění {{ soustredeni }}</h1>
{# Zde zcela záměrně chybí nějaké whitespacy, např. odřádkování a odsazení #}
<pre><code>{% for ucastnik in soustredeni.ucastnici.all %}\ucastnik{{ ucastnik|sloz }}{{ ucastnik.osoba.email|sloz }}{{ ucastnik.skola|sloz }}
{% endfor %}
{% for vedouci in soustredeni.organizatori.all %}\vedouci{{ vedouci|sloz }}{{ vedouci.osoba.email|sloz }}{TODO}
{% endfor %}</code></pre>
{% endblock %}