Add the profile_hook in case of user with or without media
authorSebastian Spaeth <Sebastian@SSpaeth.de>
Thu, 12 Dec 2013 17:12:13 +0000 (18:12 +0100)
committerSebastian Spaeth <Sebastian@SSpaeth.de>
Thu, 12 Dec 2013 17:12:13 +0000 (18:12 +0100)
the hook was only run in case the user had no media uploaded yet.
This does not make any sense, so we run the hook in all cases now.
The designers might have to think about the placement of the stuff
being inserted at some point...

mediagoblin/templates/mediagoblin/user_pages/user.html

index d554b7e8e570b05cec71c83f2b0fe06a1c774b5e..14a67431ef6e3c5d9b255af6e877414f28e03340 100644 (file)
            href="{{ request.urlgen('mediagoblin.submit.start') }}">
           {%- trans %}Add media{% endtrans -%}
         </a>
-        {% set feed_url = request.urlgen(
-                  'mediagoblin.user_pages.atom_feed',
-                  user=user.username) %}
-        {% template_hook("user_profile") %}
-        {% include "mediagoblin/utils/feed_link.html" %}
       </div>
     {% else %}
       <div class="profile_showcase empty_space">
       </div>
     {% endif %}
   {% endif %}
+  {% template_hook("user_profile") %}
   <div class="clear"></div>
 {% endblock %}