diff options
author | dk-15 | 2017-05-18 17:29:35 +0530 |
---|---|---|
committer | dk-15 | 2017-05-18 17:36:23 +0530 |
commit | 1dc60aad138f766764df30bcd2f6c517e5dbd912 (patch) | |
tree | 055fa66f94510b5658f4c350814047a9cec8179f /slot/views.py | |
parent | 5cab3891862fa9cb64bf6f2be2c53be98a491aca (diff) | |
download | SBHS-2018-Rpi-1dc60aad138f766764df30bcd2f6c517e5dbd912.tar.gz SBHS-2018-Rpi-1dc60aad138f766764df30bcd2f6c517e5dbd912.tar.bz2 SBHS-2018-Rpi-1dc60aad138f766764df30bcd2f6c517e5dbd912.zip |
Confirmation mail working
Diffstat (limited to 'slot/views.py')
-rw-r--r-- | slot/views.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/slot/views.py b/slot/views.py index b137f93..e9aa9dd 100644 --- a/slot/views.py +++ b/slot/views.py @@ -8,6 +8,9 @@ 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") |