.
This commit is contained in:
@@ -58,23 +58,7 @@
|
|||||||
<div>
|
<div>
|
||||||
|
|
||||||
{% if view_feedback %}
|
{% if view_feedback %}
|
||||||
Notes:
|
{% include 'question_notes.html' %}
|
||||||
<ul class="notes">
|
|
||||||
{% for note in question.notes.all %}
|
|
||||||
<li {% if note.complete %}class='complete' {% endif %}>
|
|
||||||
{{ note.created_on }} by
|
|
||||||
{% if note.user_author %}
|
|
||||||
{{note.user_author}}
|
|
||||||
{% else %}
|
|
||||||
{{ note.author }} [unregistered]
|
|
||||||
{% endif %}
|
|
||||||
{{note.note_type}} / {{ note.note }}
|
|
||||||
{% if not note.complete %}
|
|
||||||
(<a href="{% url 'feedback_mark_complete' pk=note.pk %}">Mark complete</a>)
|
|
||||||
{% endif %}
|
|
||||||
</li>
|
|
||||||
{% endfor %}
|
|
||||||
</ul>
|
|
||||||
<details>
|
<details>
|
||||||
<summary>
|
<summary>
|
||||||
Suggested answers
|
Suggested answers
|
||||||
|
|||||||
@@ -0,0 +1,17 @@
|
|||||||
|
Notes:
|
||||||
|
<ul class="notes">
|
||||||
|
{% for note in question.notes.all %}
|
||||||
|
<li {% if note.complete %}class='complete' {% endif %}>
|
||||||
|
{{ note.created_on }} by
|
||||||
|
{% if note.user_author %}
|
||||||
|
{{note.user_author}}
|
||||||
|
{% else %}
|
||||||
|
{{ note.author }} [unregistered]
|
||||||
|
{% endif %}
|
||||||
|
{{note.note_type}} / {{ note.note }}
|
||||||
|
{% if not note.complete %}
|
||||||
|
(<a href="{% url 'feedback_mark_complete' pk=note.pk %}">Mark complete</a>)
|
||||||
|
{% endif %}
|
||||||
|
</li>
|
||||||
|
{% endfor %}
|
||||||
|
</ul>
|
||||||
Reference in New Issue
Block a user