summaryrefslogtreecommitdiff
path: root/template/allotter/complete.html
diff options
context:
space:
mode:
Diffstat (limited to 'template/allotter/complete.html')
-rw-r--r--template/allotter/complete.html15
1 files changed, 8 insertions, 7 deletions
diff --git a/template/allotter/complete.html b/template/allotter/complete.html
index 799d965..2cd1b7c 100644
--- a/template/allotter/complete.html
+++ b/template/allotter/complete.html
@@ -10,14 +10,15 @@
<h3> Please keep in mind that, the next time you login you will be redirected to this page straightaway.</h3>
{% if options_chosen %}
-<table>
-<tr>
+<table class="table table-bordered table-striped">
+<thead>
<td><p>Programme Code </p></td>
<td><p>Programme Name </p></td>
<td><p>Insitute </p></td>
<td><p>Preference </p></td>
-</tr>
+</thead>
+<tbody>
{% for option in options_chosen %}
<tr>
<td><p> {{ forloop.counter }} </p></td>
@@ -26,7 +27,7 @@
<td><p> {{ option.opt_location }} </p></td>
</tr>
{% endfor %}
-
+</tbody>
</table>
{% if email %}
@@ -43,17 +44,17 @@ An email with the list of options has been sent {{ email }} for book-keeping pur
<form action="/allotter/apply/" method="post">
{% csrf_token %}
-<input type="submit" name="apply" value="Edit Options" />
+<input type="submit" name="apply" value="Edit Options" class="btn" />
</form>
<form action="/allotter/get_pdf/" method="post">
{% csrf_token %}
-<input type="submit" name="get_pdf" value="Generate PDF" />
+<input type="submit" name="get_pdf" value="Generate PDF" class="btn" />
</form>
<form action="/allotter/logout/" method="post">
{% csrf_token %}
-<input type="submit" name="logout" value="Quit Allotment" />
+<input type="submit" name="logout" value="Quit Allotment" class="btn" />
</form>
{% endblock content %}