download links in book text
[wolnelektury.git] / wolnelektury / views.py
index 555b732..9a0a3f9 100755 (executable)
@@ -17,6 +17,7 @@ from catalogue.models import Book
 from ajaxable.utils import placeholdized
 
 
+@never_cache
 def main_page(request):
     last_published = Book.objects.exclude(html_file='').order_by('-created_at')[:4]
 
@@ -66,7 +67,7 @@ class LoginRegisterFormView(LoginFormView):
     template = 'auth/login_register.html'
     title = _('You have to be logged in to continue')
 
-    def extra_context(self):
+    def extra_context(self, request, obj):
         return {
             "register_form": placeholdized(UserCreationForm(prefix='register')),
             "register_submit": _('Register'),