26 lines
907 B
HTML
Executable File
26 lines
907 B
HTML
Executable File
{% extends 'longs/base.html' %}
|
|
|
|
{% block content %}
|
|
|
|
|
|
{% if exam %}
|
|
<div>
|
|
|
|
{% if previous > -1 %}
|
|
<a href="{% url 'longs:exam_question_detail' exam.id previous %}">Previous question</a>
|
|
{% endif %}
|
|
This question is part of exam: {{exam.name}} [{{pos}}/{{exam_length}}]
|
|
{% if next %}
|
|
<a href="{% url 'longs:exam_question_detail' exam.id next %}">Next question</a>
|
|
{% endif %}
|
|
</div>
|
|
{% endif %}
|
|
|
|
<a href="{% url 'longs:long_update' pk=question.pk %}" title="Edit the Long">Edit</a>
|
|
<a href="{% url 'longs:long_clone' pk=question.pk %}" title="Clone the Long (duplicate everything but the images)">Clone</a>
|
|
<a href="{% url 'longs:long_add_note' pk=question.pk %}"> Add Note</a>
|
|
{% if request.user.is_superuser %}
|
|
<a href="{% url 'admin:longs_long_change' question.id %}" title="Edit the Long using the admin interface">Admin Edit</a>
|
|
{% endif %}
|
|
{% include 'longs/long_display_block.html' %}
|
|
{% endblock %} |