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