Just removing some trailing whitespace

This commit is contained in:
Christopher Allan Webber 2011-07-04 08:47:28 -05:00
parent 9973c0580f
commit afa7607431

View File

@ -28,16 +28,16 @@
{% if user %} {% if user %}
<h1>{{ user.username }}'s profile</h1> <h1>{{ user.username }}'s profile</h1>
{% if request.user['_id'] == user['_id'] or request.user['is_admin'] %} {% if request.user['_id'] == user['_id'] or request.user['is_admin'] %}
<a href="{{ request.urlgen('mediagoblin.edit.profile') }}?username={{ <a href="{{ request.urlgen('mediagoblin.edit.profile') }}?username={{
user.username }}">Edit profile</a> user.username }}">Edit profile</a>
{% endif %} {% endif %}
{% include "mediagoblin/utils/profile.html" %} {% include "mediagoblin/utils/profile.html" %}
{% set pagination_base_url = user_gallery_url %} {% set pagination_base_url = user_gallery_url %}
{% include "mediagoblin/utils/object_gallery.html" %} {% include "mediagoblin/utils/object_gallery.html" %}
<p><a href="{{ user_gallery_url }}">View all of {{ user.username }}'s media</a></p> <p><a href="{{ user_gallery_url }}">View all of {{ user.username }}'s media</a></p>
<a href={{ request.urlgen( <a href={{ request.urlgen(
'mediagoblin.user_pages.atom_feed', 'mediagoblin.user_pages.atom_feed',
@ -46,4 +46,4 @@
{# This *should* not occur as the view makes sure we pass in a user. #} {# This *should* not occur as the view makes sure we pass in a user. #}
<p>Sorry, no such user found.<p/> <p>Sorry, no such user found.<p/>
{% endif %} {% endif %}
{% endblock %} {% endblock %}