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