X-Git-Url: http://mmka.chem.univ.gda.pl/gitweb/?a=blobdiff_plain;f=filex%2Fforms.py;fp=filex%2Fforms.py;h=132bd73fd867e91e35014457748fb71d92f167b8;hb=551b5fe34b191fd78106178245dcf3ee8563e8d7;hp=0000000000000000000000000000000000000000;hpb=76066c4cd6557fe84369f538d69f64f8955bf03a;p=qcg-portal.git diff --git a/filex/forms.py b/filex/forms.py new file mode 100644 index 0000000..132bd73 --- /dev/null +++ b/filex/forms.py @@ -0,0 +1,8 @@ +# coding=utf-8 +from django import forms + + +class NewDirForm(forms.Form): + host = forms.CharField(label=u'Host', max_length=256, widget=forms.HiddenInput()) + path = forms.CharField(label=u'Ścieżka', max_length=1024, widget=forms.HiddenInput()) + name = forms.CharField(label=u'Nazwa', max_length=256)