X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/21c2fdb4b026636693c8a122635892c411ebfe0a..22562ad88cc1bfc34e22ff02dec66fb2e975e7ac:/apps/wiki/forms.py diff --git a/apps/wiki/forms.py b/apps/wiki/forms.py index e48c5eae..d5c0ed54 100644 --- a/apps/wiki/forms.py +++ b/apps/wiki/forms.py @@ -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)