This commit is contained in:
Ross
2021-08-21 09:36:55 +01:00
parent 0fbf23b4ce
commit 506e5111ce
9 changed files with 29 additions and 10 deletions
+5 -4
View File
@@ -2,9 +2,10 @@
{% block content %}
<div class="question">
<a href="{% url 'admin:sbas_question_change' question.id %}" title="Edit the Question using the admin interface">Admin Edit</a>
<a href="{% url 'admin:sbas_question_change' question.id %}"
title="Edit the Question using the admin interface">Admin Edit</a>
<div class="date">
Created: {{ question.created_date }}
Created: {{ question.created_date|date:"d/m/Y"}}
</div>
{% autoescape off %}
<b>{{question.stem}}</b>
@@ -30,8 +31,8 @@
<div>
Author: {% for user in question.author.all %}
{{ author }},
{% endfor %}
{{ author }},
{% endfor %}
</div>
</div>
{% endblock %}