X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/048c2b7c0d808909a3c1ab04e5baae6c94f38a7c..fa5a185ce54eb7bacaadc34f05abb63e701d39d8:/apps/catalogue/forms.py?ds=sidebyside

diff --git a/apps/catalogue/forms.py b/apps/catalogue/forms.py
index 6a3345679..6ed6d62c2 100644
--- a/apps/catalogue/forms.py
+++ b/apps/catalogue/forms.py
@@ -26,7 +26,7 @@ class SearchForm(forms.Form):
         tags = kwargs.pop('tags', [])
         super(SearchForm, self).__init__(*args, **kwargs)
         self.fields['q'].widget.attrs['title'] = _('title, author, theme/topic, epoch, kind, genre')
-	self.fields['q'].widget.attrs['style'] = 'float: left; width: 200px; border: medium none; height: 15px; margin-top: 2px;'
+	    #self.fields['q'].widget.attrs['style'] = ''
         self.fields['tags'].initial = '/'.join(tag.slug for tag in Tag.get_tag_list(tags))
 
 
@@ -59,7 +59,7 @@ class NewSetForm(forms.Form):
 
     def save(self, user, commit=True):
         name = self.cleaned_data['name']
-        new_set = Tag(name=name, slug=utils.get_random_hash(name), sort_key=slughifi(name),
+        new_set = Tag(name=name, slug=utils.get_random_hash(name), sort_key=name.lower(),
             category='set', user=user)
 
         new_set.save()
@@ -73,6 +73,7 @@ FORMATS = (
     ('odt', 'ODT'),
     ('txt', 'TXT'),
     ('epub', 'EPUB'),
+    ('daisy', 'DAISY'),
 )