From 4336f5f06f61de30ae3fa54650fce63a9d5ef5be Mon Sep 17 00:00:00 2001 From: ttt Date: Sat, 13 May 2017 00:29:47 +0530 Subject: added all server files --- templates/admin/booking_index.html | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 templates/admin/booking_index.html (limited to 'templates/admin/booking_index.html') diff --git a/templates/admin/booking_index.html b/templates/admin/booking_index.html new file mode 100644 index 0000000..db9b41e --- /dev/null +++ b/templates/admin/booking_index.html @@ -0,0 +1,33 @@ +{% extends "layout.html" %} +{% load staticfiles %} + +{% block content %} +
+
+ {% include "account/sub_nav.html" %} +
+ {% include "admin/sub_nav.html" %} + + + + + + + + + + + {% for b in bookings %} + + + + + + + {% endfor %} + +
DateSlotBoardUser
{{ b.booking_date }}{{ b.slot }}{{ b.account.board.mid }}{{ b.account.name }}
+
+
+
+{% endblock %} \ No newline at end of file -- cgit