diff options
author | sriyasainath | 2017-06-13 17:34:44 +0530 |
---|---|---|
committer | sriyasainath | 2017-06-13 17:34:44 +0530 |
commit | bab1bd450b649bcb79d10cde62028e7e2eb6f39e (patch) | |
tree | 8c7cd4f2fb7dd50c856085b099ba51624e359293 /templates/admin/booking_index.html | |
parent | ea8f8cc70fb81cfbbee371ae7a45e4497ea7b949 (diff) | |
download | SBHS-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.html | 2 |
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> |