X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/36f6233fd79390ad5af8a1532eac60a0ae57c825..0702033b4cbc642fc9f2742e9fed703d9dae9389:/apps/wiki/views.py diff --git a/apps/wiki/views.py b/apps/wiki/views.py index 46f0665f..1539bafc 100644 --- a/apps/wiki/views.py +++ b/apps/wiki/views.py @@ -134,12 +134,14 @@ def document_text(request, name): document = storage.get_or_404(name, revision) document.text = form.cleaned_data['text'] - storage.put(document, - author=form.cleaned_data['author'] or request.user.username, - comment=form.cleaned_data['comment'], - parent=revision, - ) + comment = form.cleaned_data['comment'] + + if form.cleaned_data['stage_completed']: + comment += '\n#stage-finished: %s\n' % form.cleaned_data['stage_completed'] + + author = "%s <%s>" % (form.cleaned_data['author_name'], form.cleaned_data['author_email']) + storage.put(document, author=author, comment=comment, parent=revision) document = storage.get(name) return JSONResponse({