aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLotusEcho <Emma.C.Echo@gmail.com>2012-09-24 12:05:18 -0400
committerJoar Wandborg <git@wandborg.com>2012-09-24 20:31:20 +0200
commit2b28f95b31121e14247770dca1f6a9b6ce8c2d0f (patch)
treece56604e5027aef5c9cfa0f0e54d0bbf81a1fa00
parentf2bcd91d20b5d01bb567b33120d4ae54edd5c1ef (diff)
downloadmediagoblin-2b28f95b31121e14247770dca1f6a9b6ce8c2d0f.tar.lz
mediagoblin-2b28f95b31121e14247770dca1f6a9b6ce8c2d0f.tar.xz
mediagoblin-2b28f95b31121e14247770dca1f6a9b6ce8c2d0f.zip
Changed a <p/> to </p> in user.html. Removed the <p></p> wrappers in profile.html which was included in user.html.
-rw-r--r--mediagoblin/templates/mediagoblin/user_pages/user.html2
-rw-r--r--mediagoblin/templates/mediagoblin/utils/profile.html2
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 %}