X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/a06e9d248d2e085d9d071db24bc8cc1aa6dc8ed5..c6d5dd71ad0d9bae811cc9002248d9399c7fdff7:/apps/social/views.py diff --git a/apps/social/views.py b/apps/social/views.py index 8af17da4f..446c5c4a9 100644 --- a/apps/social/views.py +++ b/apps/social/views.py @@ -3,17 +3,13 @@ # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. # from django.shortcuts import render, get_object_or_404, redirect -from django.http import HttpResponseForbidden +from django.http import HttpResponseForbidden, JsonResponse from django.contrib.auth.decorators import login_required -#~ from django.utils.datastructures import SortedDict from django.views.decorators.http import require_POST -#~ from django.contrib import auth -#~ from django.views.decorators import cache -from django.utils.translation import ugettext as _ -from ajaxable.utils import LazyEncoder, JSONResponse, AjaxableFormView +from ajaxable.utils import AjaxableFormView -from catalogue.models import Book, Tag +from catalogue.models import Book from social import forms from social.utils import get_set, likes, set_sets @@ -33,7 +29,7 @@ def like_book(request, slug): set_sets(request.user, book, [tag]) if request.is_ajax(): - return JSONResponse({"success": True, "msg": "ok", "like": True}) + return JsonResponse({"success": True, "msg": "ok", "like": True}) else: return redirect(book) @@ -70,6 +66,6 @@ def unlike_book(request, slug): set_sets(request.user, book, []) if request.is_ajax(): - return JSONResponse({"success": True, "msg": "ok", "like": False}) + return JsonResponse({"success": True, "msg": "ok", "like": False}) else: return redirect(book)