diff gpp/downloads/forms.py @ 133:c515b7401078

Use the new common way to apply markItUp to textareas and to get the smiley and markdown help dialogs for all the remaining apps except for forums and comments.
author Brian Neal <bgneal@gmail.com>
date Fri, 27 Nov 2009 00:21:47 +0000
parents f408971657b9
children b4305e18d3af
line wrap: on
line diff
--- a/gpp/downloads/forms.py	Thu Nov 26 22:51:07 2009 +0000
+++ b/gpp/downloads/forms.py	Fri Nov 27 00:21:47 2009 +0000
@@ -20,6 +20,10 @@
 
 class AddDownloadForm(forms.ModelForm):
     """Form to allow adding downloads."""
+    title = forms.CharField(required=True, 
+            widget=forms.TextInput(attrs={'size': 64, 'maxlength': 64}))
+    description = forms.CharField(required=False, 
+            widget=forms.Textarea(attrs={'class': 'markItUp smileyTarget'}))
 
     def clean_file(self):
         file = self.cleaned_data['file']
@@ -35,8 +39,8 @@
         
     class Media:
         css = {
-            'all': settings.GPP_THIRD_PARTY_CSS['markitup'],
+            'all': (settings.GPP_THIRD_PARTY_CSS['markitup'] +
+                    settings.GPP_THIRD_PARTY_CSS['jquery-ui'])
         }
-        js = settings.GPP_THIRD_PARTY_JS['markitup'] + \
-            ('js/downloads/add.js', )
-
+        js = (settings.GPP_THIRD_PARTY_JS['markitup'] +
+              settings.GPP_THIRD_PARTY_JS['jquery-ui'])