diff options
author | dk-15 | 2017-05-18 18:37:13 +0530 |
---|---|---|
committer | dk-15 | 2017-05-18 18:37:13 +0530 |
commit | ca8e51f4399e41957d4acae4810c28b255607e6a (patch) | |
tree | 7e801e29ddfecf1353f67b8a6e6d9c4c8349bf0e /slot | |
parent | b469782556fa5c9d5e84713dd613b94c1aad1e7b (diff) | |
download | SBHS-2018-Rpi-ca8e51f4399e41957d4acae4810c28b255607e6a.tar.gz SBHS-2018-Rpi-ca8e51f4399e41957d4acae4810c28b255607e6a.tar.bz2 SBHS-2018-Rpi-ca8e51f4399e41957d4acae4810c28b255607e6a.zip |
Fix MID bug in slot booking
Diffstat (limited to 'slot')
-rw-r--r-- | slot/views.py | 3 |
1 files changed, 0 insertions, 3 deletions
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") |