mirror of
https://github.com/ae-utbm/sith.git
synced 2026-09-04 19:44:34 +00:00
18 lines
357 B
Django/Jinja
18 lines
357 B
Django/Jinja
<section
|
|
hx-get="{{ url("pedagogy:ue_comments", ue_id=object.id) }}"
|
|
hx-swap="outerHTML"
|
|
hx-target="this"
|
|
hx-trigger="NewComment from:body"
|
|
>
|
|
{% if comments %}
|
|
<h2>{% trans %}Comments{% endtrans %}</h2>
|
|
<br>
|
|
{% endif %}
|
|
|
|
{% for comment in comments %}
|
|
{% include "pedagogy/fragments/ue_comment.jinja" %}
|
|
{% endfor %}
|
|
</section>
|
|
|
|
|