summaryrefslogtreecommitdiff
path: root/templates/admin/booking_index.html
diff options
context:
space:
mode:
authorsriyasainath2017-06-13 17:34:44 +0530
committersriyasainath2017-06-13 17:34:44 +0530
commitbab1bd450b649bcb79d10cde62028e7e2eb6f39e (patch)
tree8c7cd4f2fb7dd50c856085b099ba51624e359293 /templates/admin/booking_index.html
parentea8f8cc70fb81cfbbee371ae7a45e4497ea7b949 (diff)
downloadSBHS-2018-Rpi-bab1bd450b649bcb79d10cde62028e7e2eb6f39e.tar.gz
SBHS-2018-Rpi-bab1bd450b649bcb79d10cde62028e7e2eb6f39e.tar.bz2
SBHS-2018-Rpi-bab1bd450b649bcb79d10cde62028e7e2eb6f39e.zip
Rectify error which displays "midnight" for all booked slots in admin panel.
Diffstat (limited to 'templates/admin/booking_index.html')
-rw-r--r--templates/admin/booking_index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/admin/booking_index.html b/templates/admin/booking_index.html
index db9b41e..58b9e1c 100644
--- a/templates/admin/booking_index.html
+++ b/templates/admin/booking_index.html
@@ -19,7 +19,7 @@
<tbody>
{% for b in bookings %}
<tr>
- <td>{{ b.booking_date }}</td>
+ <td>{{ b.booking_date|date:"M d, Y" }}</td>
<td>{{ b.slot }}</td>
<td>{{ b.account.board.mid }}</td>
<td>{{ b.account.name }}</td>