Add chunk under forms.
[wolnelektury.git] / src / catalogue / forms.py
index bcbfe5e..405ea7c 100644 (file)
@@ -1,4 +1,3 @@
-# -*- coding: utf-8 -*-
 # This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
 #
@@ -50,6 +49,7 @@ CUSTOMIZATION_FLAGS = (
     ('nothemes', _("Don't disply themes")),
     ('nowlfont', _("Don't use our custom font")),
     ('nocover', _("Without cover")),
+    ('notoc', _("Without table of contents")),
     )
 CUSTOMIZATION_OPTIONS = (
     ('leading', _("Leading"), (
@@ -59,7 +59,8 @@ CUSTOMIZATION_OPTIONS = (
     )),
     ('fontsize', _("Font size"), (
         ('', _('Default')),
-        ('13pt', _('Big'))
+        ('13pt', _('Big')),
+        ('16pt', _('Bigger')),
     )),
     # ('pagesize', _("Paper size"), (
     #     ('a4paper', _('A4')),
@@ -75,7 +76,7 @@ class CustomPDFForm(forms.Form):
         for name, label in CUSTOMIZATION_FLAGS:
             self.fields[name] = forms.BooleanField(required=False, label=label)
         for name, label, choices in CUSTOMIZATION_OPTIONS:
-            self.fields[name] = forms.ChoiceField(choices, required=False, label=label)
+            self.fields[name] = forms.ChoiceField(choices=choices, required=False, label=label)
 
     def clean(self):
         self.cleaned_data['cust'] = self.customizations