pedagogy: fix error with author change on comment when edited by an admin

This commit is contained in:
2019-06-16 18:34:11 +02:00
parent 8512f3c5d0
commit c467165bf3
2 changed files with 4 additions and 2 deletions

View File

@ -21,6 +21,7 @@
<p>{{ comment.grade_work_load }}</p>
<p>{{ comment.comment }}</p>
<p>{% trans %}Published: {% endtrans %}{{ comment.publish_date }}</p>
<p>{% trans %}Author: {% endtrans %}{{ comment.author }}</p>
{% if user.is_owner(comment) %}
<p><a href="{{ url('pedagogy:comment_edit', comment_id=comment.id) }}">{% trans %}Edit{% endtrans %}</a></p>
<p><a href="{{ url('pedagogy:comment_delete', comment_id=comment.id) }}">{% trans %}Delete{% endtrans %}</a></p>