Changed a <p/> to </p> in user.html. Removed the <p></p> wrappers in profile.html...
authorLotusEcho <Emma.C.Echo@gmail.com>
Mon, 24 Sep 2012 16:05:18 +0000 (12:05 -0400)
committerJoar Wandborg <git@wandborg.com>
Mon, 24 Sep 2012 18:31:20 +0000 (20:31 +0200)
mediagoblin/templates/mediagoblin/user_pages/user.html
mediagoblin/templates/mediagoblin/utils/profile.html

index c74535d79fff13edd4d6ca281388c0482d4d21e7..a58d745fa672d088d538585c54abb7ca9235cb8c 100644 (file)
@@ -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" %}
index 945bd0bb9883838e5c503af4062634bc7e65a392..7a3af01ce2caaf0a2519b139128bf40d829747ea 100644 (file)
@@ -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 %}