base.html: use named url instead of / (#5767)

This commit is contained in:
Thomas NOËL 2014-10-20 19:11:15 +02:00
parent 5bed322761
commit 08ea46e0bd
1 changed files with 2 additions and 2 deletions

View File

@ -13,8 +13,8 @@
{% block more-user-links %}
{% if BREADCRUMB_INITIAL_LINK %}
<a class="icon-home-space" href="{{ BREADCRUMB_INITIAL_LINK.0 }}">{{ BREADCRUMB_INITIAL_LINK.1 }}</a>
<a href="/">Passerelle</a>
<a href="{% url 'homepage' %}">Passerelle</a>
{% else %}
<a href="/" class="icon-home-space">{% trans 'Home' %}</a>
<a href="{% url 'homepage' %}" class="icon-home-space">{% trans 'Home' %}</a>
{% endif %}
{% endblock %}