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
465 B
24 lines
465 B
{% extends "base.html" %}
|
|
|
|
{% load comments %}
|
|
|
|
{% block content %}
|
|
<div {% if not problem.verejne and user.je_org %}class="mam-org-only"{% endif %}>
|
|
{% block problem %}
|
|
{% endblock %}
|
|
|
|
{% if user.je_org %}
|
|
<div class='mam-org-only'>
|
|
|
|
<h2>Text - org</h2>
|
|
{{ problem.text_org |safe }}
|
|
|
|
<h2>Diskuse - org</h2>
|
|
{% render_comment_list for object %}
|
|
{% render_comment_form for object %}
|
|
|
|
</div>
|
|
{% endif %}
|
|
|
|
</div>
|
|
{% endblock content %}
|
|
|