From ca8e51f4399e41957d4acae4810c28b255607e6a Mon Sep 17 00:00:00 2001 From: dk-15 Date: Thu, 18 May 2017 18:37:13 +0530 Subject: Fix MID bug in slot booking --- slot/views.py | 3 --- 1 file changed, 3 deletions(-) (limited to 'slot') diff --git a/slot/views.py b/slot/views.py index e9aa9dd..b137f93 100644 --- a/slot/views.py +++ b/slot/views.py @@ -8,9 +8,6 @@ LIMIT = 2 @login_required(redirect_field_name=None) def new(req): - print ";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;" - print req.user - print ";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;" cur_slots = Slot.current_slots(req.user.board.mid) all_slots = Slot.get_free_slots(req.user.board.mid) date = (datetime.datetime.now()).strftime("%Y-%m-%d") -- cgit