From b469782556fa5c9d5e84713dd613b94c1aad1e7b Mon Sep 17 00:00:00 2001 From: dk-15 Date: Thu, 18 May 2017 17:29:35 +0530 Subject: Confirmation mail working --- slot/views.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'slot/views.py') 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") -- cgit