allow dash in create form
authorRadek Czajka <radoslaw.czajka@nowoczesnapolska.org.pl>
Wed, 15 Sep 2010 08:11:24 +0000 (10:11 +0200)
committerRadek Czajka <radoslaw.czajka@nowoczesnapolska.org.pl>
Wed, 15 Sep 2010 08:11:24 +0000 (10:11 +0200)
apps/wiki/forms.py

index e48c5ea..d5c0ed5 100644 (file)
@@ -23,7 +23,7 @@ class DocumentCreateForm(forms.Form):
         Form used for creating new documents.
     """
     title = forms.CharField()
-    id = forms.RegexField(regex=ur"^[\wąćęłńóśźżĄĆĘŁŃÓŚŹŻ]+$")
+    id = forms.RegexField(regex=ur"^[-\wąćęłńóśźżĄĆĘŁŃÓŚŹŻ]+$")
     file = forms.FileField(required=False)
     text = forms.CharField(required=False, widget=forms.Textarea)