mirror of
https://github.com/ae-utbm/sith.git
synced 2026-09-18 02:04:20 +00:00
25 lines
758 B
Django/Jinja
25 lines
758 B
Django/Jinja
{# A few hx-partials for swapping a few parts of the main ue_detail.jinja #}
|
|
|
|
{% from "pedagogy/macros.jinja" import display_star %}
|
|
|
|
<hx-partial id="ue-grade">
|
|
{% include "pedagogy/fragments/ue_detail/grade.jinja" %}
|
|
</hx-partial>
|
|
|
|
<hx-partial id="comment-form">
|
|
{% if object.has_user_already_commented(user) %}
|
|
<em>
|
|
{% trans trimmed %}
|
|
You already posted a comment on this UE.
|
|
If you want to comment again, please modify or delete your previous comment.
|
|
{% endtrans %}
|
|
</em>
|
|
<br>
|
|
{% elif user.has_perm("pedagogy.add_uecomment") %}
|
|
{{ add_comment_form }}
|
|
{% endif %}
|
|
</hx-partial>
|
|
|
|
<hx-partial id="comments" hx-swap="innerMorph">
|
|
{% include "pedagogy/fragments/ue_detail/comments.jinja" %}
|
|
</hx-partial> |