Change the text of url to blogs on user profile page.

This commit is contained in:
Aditi Mittal 2013-09-18 22:19:58 +05:30
parent c3218c0574
commit 9d0627e068

View File

@ -19,9 +19,9 @@
{#This injects the URL to a user's blog dashboard on her profile.
#}
{%if blogs %}
<h2>Blog</h2>
<h3>Blog</h3>
{% set blogs_url = request.urlgen('mediagoblin.media_types.blog.blog_admin_dashboard',
blogs=blogs, user=user.username) %}
<p><a href="{{ blogs_url }}">The user's blogs can be found here</a></p>
<p><a href="{{ blogs_url }}"><em>Go to blogs</em></a></p>
{%endif%}