Changed a <p/> to </p> in user.html. Removed the <p></p> wrappers in profile.html which was included in user.html.

This commit is contained in:
LotusEcho 2012-09-24 12:05:18 -04:00 committed by Joar Wandborg
parent f2bcd91d20
commit 2b28f95b31
2 changed files with 2 additions and 2 deletions

View File

@ -40,7 +40,7 @@
{% block mediagoblin_content -%} {% block mediagoblin_content -%}
{# If no user... #} {# If no user... #}
{% if not 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 #} {# User exists, but needs verification #}
{% elif user.status == "needs_email_verification" %} {% elif user.status == "needs_email_verification" %}

View File

@ -19,7 +19,7 @@
{% block profile_content -%} {% block profile_content -%}
{% if user.bio %} {% if user.bio %}
{% autoescape False %} {% autoescape False %}
<p>{{ user.bio_html }}</p> {{ user.bio_html }}
{% endautoescape %} {% endautoescape %}
{% endif %} {% endif %}
{% if user.url %} {% if user.url %}