remove now unused {% load url from future %}
[mygpo.git] / mygpo / share / templates / userpage-denied.html
bloba47f2b082a935ec901f956cdd82715cbb99a1b35
1 {% extends "base.html" %}
2 {% load i18n %}
3 {% load podcasts %}
5 {% load menu %}
6 {% block mainmenu %}{{ "/share/"|main_menu }}{% endblock %}
7 {% block sectionmenu %}{{ "/share/"|section_menu:other_user.username }}{% endblock %}
9 {% block title %}{{ other_user.username }}{% endblock %}
11 {% block header %}
12 <h1>{{ other_user.username }}</h1>
13 {% endblock %}
15 {% block content %}
16 <p>{% blocktrans with other_user.username as username %}{{ username }} didn't share his user page with you. Maybe you should contact him to get the correct link.{% endblocktrans %}</p>
18 {% if user.is_authenticated %}
19 {% url "share" as share-url %}
20 <div class="alert alert-info"><strong>{% trans "Want to have your own user page?" %}</strong>{% blocktrans %} Go to your <a href="{{ share-url }}">Share Page</a> to get the link.</a>{% endblocktrans %}</div>
21 {% endif %}
23 {% endblock %}