mirror of
https://github.com/ae-utbm/sith.git
synced 2024-10-31 19:38:04 +00:00
pedagogy: quick access to comment from moderation
This commit is contained in:
parent
f118040432
commit
d85152e58c
@ -23,7 +23,7 @@
|
|||||||
{% for widget in form.accepted_reports.subwidgets %}
|
{% for widget in form.accepted_reports.subwidgets %}
|
||||||
{% set report = queryset.get(id=widget.data.value) %}
|
{% set report = queryset.get(id=widget.data.value) %}
|
||||||
<tr>
|
<tr>
|
||||||
<td><a href="{{ url('pedagogy:uv_detail', uv_id=report.comment.uv.id) }}">{{ report.comment.uv }}</a></td>
|
<td><a href="{{ url('pedagogy:uv_detail', uv_id=report.comment.uv.id) }}#{{ report.comment.uv.id }}">{{ report.comment.uv }}</a></td>
|
||||||
<td>{{ report.comment.comment|markdown }}</td>
|
<td>{{ report.comment.comment|markdown }}</td>
|
||||||
<td>{{ report.reason|markdown }}</td>
|
<td>{{ report.reason|markdown }}</td>
|
||||||
<td>{{ widget.tag() }}</td>
|
<td>{{ widget.tag() }}</td>
|
||||||
@ -50,7 +50,7 @@
|
|||||||
{% for widget in form.denied_reports.subwidgets %}
|
{% for widget in form.denied_reports.subwidgets %}
|
||||||
{% set report = queryset.get(id=widget.data.value) %}
|
{% set report = queryset.get(id=widget.data.value) %}
|
||||||
<tr>
|
<tr>
|
||||||
<td><a href="{{ url('pedagogy:uv_detail', uv_id=report.comment.uv.id) }}">{{ report.comment.uv }}</a></td>
|
<td><a href="{{ url('pedagogy:uv_detail', uv_id=report.comment.uv.id) }}#{{ report.comment.uv.id }}">{{ report.comment.uv }}</a></td>
|
||||||
<td>{{ report.comment.comment|markdown }}</td>
|
<td>{{ report.comment.comment|markdown }}</td>
|
||||||
<td>{{ report.reason|markdown }}</td>
|
<td>{{ report.reason|markdown }}</td>
|
||||||
<td>{{ widget.tag() }}</td>
|
<td>{{ widget.tag() }}</td>
|
||||||
|
Loading…
Reference in New Issue
Block a user