Projet

Général

Profil

0001-breadcrumb-fix-on-management-page-12540.patch

Serghei Mihai (congés, retour 15/05), 12 juillet 2016 16:37

Télécharger (928 octets)

Voir les différences:

Subject: [PATCH] breadcrumb fix on management page (#12540)

 corbo/templates/corbo/base.html | 8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)
corbo/templates/corbo/base.html
19 19

  
20 20
{% block site-title %} {% trans "Announces" %}{% endblock %}
21 21

  
22
{% block more-user-links %}
23
    {{ block.super }}
24
    {% if user.is_authenticated and user.is_superuser %}
25
    <a href="{% url 'manage' %}">{% trans "Management" %}</a>
26
    {% endif %}
22
{% block breadcrumb %}
23
 {{ block.super }}
24
 <a href="{% url 'manage' %}">{% trans "Management" %}</a>
27 25
{% endblock %}
28 26

  
29 27
{% block content %}
30
-