diff options
author | dk-15 | 2017-05-18 18:37:13 +0530 |
---|---|---|
committer | dk-15 | 2017-05-18 18:37:13 +0530 |
commit | 9b8d5b996acb6a042930ddee479ecf9e40bb4e43 (patch) | |
tree | c5bad6121088e787d5f4bbf7e1497b29884d8c5f /slot | |
parent | 1dc60aad138f766764df30bcd2f6c517e5dbd912 (diff) | |
download | SBHS-2018-Rpi-9b8d5b996acb6a042930ddee479ecf9e40bb4e43.tar.gz SBHS-2018-Rpi-9b8d5b996acb6a042930ddee479ecf9e40bb4e43.tar.bz2 SBHS-2018-Rpi-9b8d5b996acb6a042930ddee479ecf9e40bb4e43.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") |