Files
Sith/pedagogy/templates/pedagogy/fragments/ue_comments.jinja
T
2026-08-31 20:41:41 +02:00

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>