changeset 186:ff9c95239c3a

Change order of some fields in bundle upload form Switched free_license and octave_format
author dellsystem <ilostwaldo@gmail.com>
date Sat, 27 Oct 2012 16:25:19 -0400
parents 5abda22e4637
children 4752861906b3
files apps/bundle/forms.py
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/apps/bundle/forms.py	Sat Oct 27 16:19:24 2012 -0400
+++ b/apps/bundle/forms.py	Sat Oct 27 16:25:19 2012 -0400
@@ -6,8 +6,8 @@
 class BundleForm(forms.ModelForm):
     class Meta:
         model = Bundle
-        fields = ('uploader', 'name', 'description', 'free_license',
-            'octave_format')
+        fields = ('uploader', 'name', 'description', 'octave_format',
+            'free_license')
         widgets = {
             # Ideally, the uploader field should just not show up at all
             # Not really possible if we want to validate the name