From bab1bd450b649bcb79d10cde62028e7e2eb6f39e Mon Sep 17 00:00:00 2001 From: sriyasainath Date: Tue, 13 Jun 2017 17:34:44 +0530 Subject: Rectify error which displays "midnight" for all booked slots in admin panel. --- templates/admin/booking_index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 @@ {% for b in bookings %} - {{ b.booking_date }} + {{ b.booking_date|date:"M d, Y" }} {{ b.slot }} {{ b.account.board.mid }} {{ b.account.name }} -- cgit