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.
24 lines
805 B
24 lines
805 B
{% extends "base.html" %}
|
|
|
|
{% block title %}
|
|
{{prispevek.nazev}}
|
|
{% endblock title %}
|
|
|
|
{% block content %}
|
|
{% if not prispevek.zverejnit %}<div class="mam-org-only">{% endif %}
|
|
<h1>{{prispevek.nazev}}</h1>
|
|
<h2>{{titul}} {{prispevek.reseni.resitel}}</h2>
|
|
<h3>Příspěvek k tématu <a href="..">{{prispevek.problem.nazev}}</a></h3>
|
|
{% if prispevek.reseni.body %}
|
|
<div class="body">({{prispevek.reseni.body}} b)</div>
|
|
{% endif %}
|
|
|
|
{% if prispevek.text_org %}
|
|
<div class="org-text">{% autoescape off %}{{prispevek.text_org}}{% endautoescape %}</div>
|
|
{% endif %}
|
|
|
|
{% if prispevek.text_resitel %}
|
|
{% autoescape off %}{{prispevek.text_resitel}}{% endautoescape %}
|
|
{% endif %}
|
|
{% if not prispevek.zverejnit %}</div>{% endif %}
|
|
{% endblock content %}
|
|
|