Minor formatting and syntax fix.
[mediagoblin.git] / mediagoblin / submit / forms.py
index ad4207717054c34a3ec30c6ccd1f91bfc51f3378..4ff52609130656499b0b8a7ea03608eaee4379d1 100644 (file)
@@ -19,6 +19,7 @@ import wtforms
 
 from mediagoblin.tools.text import tag_length_validator
 from mediagoblin.tools.translate import fake_ugettext_passthrough as _
+from mediagoblin.tools.licenses import licenses_as_choices
 
 
 class SubmitStartForm(wtforms.Form):
@@ -27,9 +28,15 @@ class SubmitStartForm(wtforms.Form):
         _('Title'),
         [wtforms.validators.Length(min=0, max=500)])
     description = wtforms.TextAreaField(
-        _('Description of this work'))
+        _('Description of this work'),
+        description=_("""You can use
+                      <a href="http://daringfireball.net/projects/markdown/basics">
+                      Markdown</a> for formatting."""))
     tags = wtforms.TextField(
         _('Tags'),
         [tag_length_validator],
         description=_(
-          "Seperate tags by commas."))
+          "Separate tags by commas."))
+    license = wtforms.SelectField(
+        _('License'),
+        choices=licenses_as_choices())