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/slot/index.html | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 templates/slot/index.html (limited to 'templates/slot/index.html') diff --git a/templates/slot/index.html b/templates/slot/index.html new file mode 100644 index 0000000..1a25a1f --- /dev/null +++ b/templates/slot/index.html @@ -0,0 +1,37 @@ +{% extends "layout.html" %} + +{% block content %} +
+
+ {% include "account/sub_nav.html" %} + +
+

Your booked slots

+ + + + + + + + + + {% for b in bookings %} + + + + {% if now_time < b.start_time %} + + {% else %} + + {% endif %} + + {% endfor %} + +
DateSlot timingsDelete
{{ b.booking_date|date:"M d, Y" }}{{ b.slot }}DeleteDelete
+
+
+
+{% endblock %} \ No newline at end of file -- cgit