X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/0e5d704f09ed528815a097b6066acf4ebaea0f08..9574b970bdd6e28fc6178b736e8e17dfca15fd4e:/src/catalogue/views.py diff --git a/src/catalogue/views.py b/src/catalogue/views.py index aeed403ab..398c61cc4 100644 --- a/src/catalogue/views.py +++ b/src/catalogue/views.py @@ -17,7 +17,8 @@ from django.utils.translation import ugettext as _, ugettext_lazy from django.views.decorators.cache import never_cache from ajaxable.utils import AjaxableFormView -from club.models import Membership +from club.forms import ScheduleForm +from club.models import Club, Membership from annoy.models import DynamicTextInsert from pdcounter import views as pdcounter_views from picture.models import Picture, PictureArea @@ -289,6 +290,8 @@ def book_detail(request, slug): 'book': book, 'book_children': book.children.all().order_by('parent_number', 'sort_key'), 'active_menu_item': 'books', + 'club_form': ScheduleForm() if book.preview else None, + 'club': Club.objects.first() if book.preview else None, }) @@ -351,7 +354,7 @@ def import_book(request): _("An error occurred: %(exception)s\n\n%(tb)s") % { 'exception': exception, 'tb': tb }, - mimetype='text/plain' + content_type='text/plain' ) return HttpResponse(_("Book imported successfully")) return HttpResponse(_("Error importing file: %r") % book_import_form.errors)