{% extends "base.html" %} {% block pagetitle %} OnlineTest Instructions and Rules

Important instructions & rules

{% endblock pagetitle %} {% block content %} {% if questionpaper.quiz.is_expired %}
This Quiz has expired. You can no longer attempt this Quiz.
{% else %}
{% load tz %} {% get_current_timezone as TIME_ZONE %} You can attempt this Quiz at any time between {{ questionpaper.quiz.start_date_time }} {{ TIME_ZONE }} and {{ questionpaper.quiz.end_date_time }} {{ TIME_ZONE }}
You are not allowed to attempt the Quiz before or after this duration
{% endif %}

Welcome {{user.first_name.title}} {{user.last_name.title}}, to the programming quiz!

{{ questionpaper.quiz.instructions|safe }}
{% if user == "moderator" %}
{%else%} {% endif %} {% csrf_token %}
{% if not questionpaper.quiz.is_expired %}
{% csrf_token %}
{% endif %}
{% endblock content %}