aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Elkins <melkins@tislabs.com>2013-03-05 00:15:50 +0000
committerMichael Elkins <melkins@tislabs.com>2013-03-05 00:15:50 +0000
commite3c9fc9595e1b0f3d18a558ee8ad190609a2f884 (patch)
treef78109069359037eb7334a5fee73fa65fa3e6ff2
parentc8f81cdcffc99cdeba1dd75e9f59e6a504dbcba3 (diff)
remove outdated css class attributes for an old version of bootstap
svn path=/trunk/; revision=5103
-rw-r--r--rpkid/rpki/gui/app/forms.py9
1 files changed, 3 insertions, 6 deletions
diff --git a/rpkid/rpki/gui/app/forms.py b/rpkid/rpki/gui/app/forms.py
index ae694568..e138b572 100644
--- a/rpkid/rpki/gui/app/forms.py
+++ b/rpkid/rpki/gui/app/forms.py
@@ -89,22 +89,19 @@ class ImportForm(forms.Form):
handle = forms.CharField(required=False,
widget=forms.TextInput(attrs={'class': 'xlarge'}),
help_text='Optional. Your name for this entity, or blank to accept name in XML')
- xml = forms.FileField(label='XML file',
- widget=forms.FileInput(attrs={'class': 'input-file'}))
+ xml = forms.FileField(label='XML file')
class ImportRepositoryForm(forms.Form):
handle = forms.CharField(max_length=30, required=False,
label='Parent Handle',
help_text='Optional. Must be specified if you use a different name for this parent')
- xml = forms.FileField(label='XML file',
- widget=forms.FileInput(attrs={'class': 'input-file'}))
+ xml = forms.FileField(label='XML file')
class ImportClientForm(forms.Form):
"""Form used for importing publication client requests."""
- xml = forms.FileField(label='XML file',
- widget=forms.FileInput(attrs={'class': 'input-file'}))
+ xml = forms.FileField(label='XML file')
class UserCreateForm(forms.Form):