X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/98e12313596c58738fc7e3eeaccfde202b91ef2a..eb11e65717bdbddbc3ce08fa437739fd7bf5c279:/apps/suggest/views.py?ds=inline

diff --git a/apps/suggest/views.py b/apps/suggest/views.py
index cd733a840..4ad17046d 100644
--- a/apps/suggest/views.py
+++ b/apps/suggest/views.py
@@ -19,12 +19,10 @@ from catalogue.views import LazyEncoder
 def report(request):
     suggest_form = forms.SuggestForm(request.POST)
     if suggest_form.is_valid():
-        author = suggest_form.cleaned_data['author']
-        email = suggest_form.cleaned_data['email']
-        title = suggest_form.cleaned_data['title']
+        contact = suggest_form.cleaned_data['contact']
         description = suggest_form.cleaned_data['description']
 
-        suggestion = Suggestion(author=author, email=email, title=title,
+        suggestion = Suggestion(contact=contact,
             description=description, ip=request.META['REMOTE_ADDR'])
         if request.user.is_authenticated():
             suggestion.user = request.user