25 lines
1.4 KiB
HTML
25 lines
1.4 KiB
HTML
|
|
<div class="floating-header">
|
|
|
|
<a href="{% url 'rapids:rapid_update' pk=question.pk %}" title="Edit the Rapid">Edit</a>
|
|
<a href="{% url 'rapids:rapid_clone' pk=question.pk %}" title="Clone the Rapid (duplicate everything but the images)">Clone</a>
|
|
<a href="{% url 'rapids:question_delete' pk=question.pk %}" title="Delete the Rapid">Delete</a>
|
|
<a href="{% url 'rapids:question_answer_update' pk=question.pk %}" title="Update the question answers">Edit Answers</a>
|
|
<a href="#" onclick="return window.create_popup_window('{% url 'feedback_create' question_type='rapid' pk=question.pk %}')"> Add Note</a>
|
|
{% if request.user.is_superuser %}
|
|
<a href="{% url 'admin:rapids_rapid_change' question.id %}" title="Edit the Rapid using the admin interface">Admin Edit</a>
|
|
<a href="{% url 'rapids:question_user_answers' question.id %}" title="View user answers associated with this question">User answers</a>
|
|
{% endif %}
|
|
{% if exam %}
|
|
<div>
|
|
|
|
{% if previous > -1 %}
|
|
<a href="{% url 'rapids:exam_question_detail' exam.id previous %}">Previous question</a>
|
|
{% endif %}
|
|
Viewing question as part of exam: <a href="{% url 'rapids:exam_overview' exam.id %}">{{exam}}</a> [{{pos}}/{{exam_length}}]
|
|
{% if next %}
|
|
<a href="{% url 'rapids:exam_question_detail' exam.id next %}">Next question</a>
|
|
{% endif %}
|
|
</div>
|
|
{% endif %}
|
|
</div> |