summaryrefslogtreecommitdiff
path: root/static/website/templates/question_list.html
blob: 65b571adea2739b1be68f547bee6b6210b2d1e87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{% extends "base.html" %}

{% load static %}
 {% block content %}
<br><br>
 <div class="container">
     <br><br>
    <table>
        {% for question in question_list %}
          <a href="{{URL_ROOT}}/nccps-2018/edit_question/{{question.id}}">  {{ question.question | safe }}<br><br></a>
        {% endfor %}
    </table>
    <br>
    <a href="{% url 'website:add_questions' %}" ><button class="btn-default btn-warning"> Add Question </button></a>
    <a href="{% url 'website:leaderboard' %}" ><button class="btn-default btn-info"> LeaderBoard </button></a>
    <br><br>
</div>


{% endblock %}