Fix Logování editace
This commit is contained in:
parent
835f987797
commit
f682af8e8f
1 changed files with 3 additions and 0 deletions
|
@ -1162,6 +1162,9 @@ def resitelEditView(request):
|
|||
form = PoMaturiteProfileEditForm(POST)
|
||||
else:
|
||||
form = ProfileEditForm(POST)
|
||||
form_hash = hash(frozenset(form.items()))
|
||||
form_logger = logging.getLogger('seminar.prihlaska.form')
|
||||
form_logger.info("EDIT:" + str(form) + str(form_hash)) # TODO možná logovat jinak
|
||||
if form.is_valid():
|
||||
## Změny v osobě
|
||||
fcd = form.cleaned_data
|
||||
|
|
Loading…
Reference in a new issue