Better management of manually-set members.
[wolnelektury.git] / src / catalogue / views.py
index ef2527b..bca75e7 100644 (file)
@@ -351,7 +351,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)
@@ -449,7 +449,7 @@ def tag_catalogue(request, category):
 
 
 def collections(request):
-    objects = Collection.objects.filter(role='')
+    objects = Collection.objects.all()
 
     if len(objects) > 3:
         best = random.sample(list(objects), 3)