diff options
author | Jef van Schendel <mail@jefvanschendel.nl> | 2012-01-13 23:23:02 +0100 |
---|---|---|
committer | Jef van Schendel <mail@jefvanschendel.nl> | 2012-01-13 23:23:02 +0100 |
commit | fafec727402ef3fa4d806b200f1d86cb91cd6362 (patch) | |
tree | 5ea0271ea5e6bc8714d3f2b2ceb56f6b994d98f8 | |
parent | 20659de2344ccb8d14f8deaeaf9628d84a966e5a (diff) | |
download | mediagoblin-fafec727402ef3fa4d806b200f1d86cb91cd6362.tar.lz mediagoblin-fafec727402ef3fa4d806b200f1d86cb91cd6362.tar.xz mediagoblin-fafec727402ef3fa4d806b200f1d86cb91cd6362.zip |
Remove unnecessary piece of text in media.html. Fix "Markdown text" indentation so they are the same.
-rw-r--r-- | mediagoblin/edit/forms.py | 7 | ||||
-rw-r--r-- | mediagoblin/templates/mediagoblin/user_pages/media.html | 2 |
2 files changed, 4 insertions, 5 deletions
diff --git a/mediagoblin/edit/forms.py b/mediagoblin/edit/forms.py index 09955874..5c191fba 100644 --- a/mediagoblin/edit/forms.py +++ b/mediagoblin/edit/forms.py @@ -45,10 +45,9 @@ class EditProfileForm(wtforms.Form): bio = wtforms.TextAreaField( _('Bio'), [wtforms.validators.Length(min=0, max=500)], - description=_( - """You can use - <a href="http://daringfireball.net/projects/markdown/basics"> - Markdown</a> for formatting.""")) + description=_("""You can use + <a href="http://daringfireball.net/projects/markdown/basics"> + Markdown</a> for formatting.""")) url = wtforms.TextField( _('Website'), [wtforms.validators.Optional(), diff --git a/mediagoblin/templates/mediagoblin/user_pages/media.html b/mediagoblin/templates/mediagoblin/user_pages/media.html index 583e4ebd..865a94ab 100644 --- a/mediagoblin/templates/mediagoblin/user_pages/media.html +++ b/mediagoblin/templates/mediagoblin/user_pages/media.html @@ -97,7 +97,7 @@ user= media.get_uploader.username, media=media._id) }}" method="POST" id="form_comment"> <p> - {% trans %}Type your comment here. You can use <a href="http://daringfireball.net/projects/markdown/basics">Markdown</a> for formatting.{% endtrans %} + {% trans %}You can use <a href="http://daringfireball.net/projects/markdown/basics">Markdown</a> for formatting.{% endtrans %} </p> {{ wtforms_util.render_divs(comment_form) }} <div class="form_submit_buttons"> |