Commit e65d8658 authored by Michal Čihař's avatar Michal Čihař

Add link to public profile in user profile (issue #193)

parent e1fa98a6
...@@ -51,6 +51,11 @@ ...@@ -51,6 +51,11 @@
{% with request.user as user %} {% with request.user as user %}
{% include 'user-activity.html' %} {% include 'user-activity.html' %}
{% endwith %} {% endwith %}
<p>
{% url 'user_page' user=request.user.username as user_page%}
{% trans "Your public profile:" %}
<a href="{{ user_page }}">{{ user_page }}</a>
</p>
</div> </div>
<div id="avatar"> <div id="avatar">
<p>{% gravatar request.user 128 %}</p> <p>{% gravatar request.user 128 %}</p>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment