{% extends "exams/base.html" %} {% load static %} {% block page_title %}Manage Questions{% endblock %} {% block content %}

Questions

{% if messages %}
{% for message in messages %}
{{ message }}
{% endfor %}
{% endif %} {% for q in questions %} {% endfor %}
ID Question Title Answer Actions
{{ q.question_id }} {{ q.question_title }} {{ q.question_answer }}
{% csrf_token %}
{% endblock %}