27 lines
598 B
HTML
Executable File
27 lines
598 B
HTML
Executable File
{% extends 'base.html' %}
|
|
|
|
{% block title %}
|
|
Rapids
|
|
{% endblock %}
|
|
|
|
{% block css %}
|
|
{% endblock %}
|
|
|
|
{% block js %}
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
{% endblock %}
|
|
{% block navigation %}
|
|
Rapids:
|
|
{% if request.user.is_authenticated %}
|
|
<a href="{% url 'rapids:exam_list' %}">Exams</a> /
|
|
<a href="{% url 'rapids:rapid_view' %}">Questions</a> /
|
|
<a href="{% url 'rapids:rapid_create' %}" title="Create a new question">Create Question</a>
|
|
{% endif %}
|
|
{% comment %} </br>
|
|
Questions by:
|
|
<span id="authors-link"><a href="{% url 'rapids:author_list' %}">author</a></span> {% endcomment %}
|
|
{% endblock %} |