diff options
Diffstat (limited to 'mediagoblin')
-rw-r--r-- | mediagoblin/templates/mediagoblin/user_pages/user.html | 2 | ||||
-rw-r--r-- | mediagoblin/templates/mediagoblin/utils/profile.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/mediagoblin/templates/mediagoblin/user_pages/user.html b/mediagoblin/templates/mediagoblin/user_pages/user.html index c74535d7..a58d745f 100644 --- a/mediagoblin/templates/mediagoblin/user_pages/user.html +++ b/mediagoblin/templates/mediagoblin/user_pages/user.html @@ -40,7 +40,7 @@ {% block mediagoblin_content -%} {# If no user... #} {% if not user %} - <p>{% trans %}Sorry, no such user found.{% endtrans %}<p/> + <p>{% trans %}Sorry, no such user found.{% endtrans %}</p> {# User exists, but needs verification #} {% elif user.status == "needs_email_verification" %} diff --git a/mediagoblin/templates/mediagoblin/utils/profile.html b/mediagoblin/templates/mediagoblin/utils/profile.html index 945bd0bb..7a3af01c 100644 --- a/mediagoblin/templates/mediagoblin/utils/profile.html +++ b/mediagoblin/templates/mediagoblin/utils/profile.html @@ -19,7 +19,7 @@ {% block profile_content -%} {% if user.bio %} {% autoescape False %} - <p>{{ user.bio_html }}</p> + {{ user.bio_html }} {% endautoescape %} {% endif %} {% if user.url %} |