misc: use portal agent as first item of breadcrumb

This commit is contained in:
Frédéric Péters 2016-03-31 12:53:19 +02:00
parent 8b29894066
commit 7fc8a4a6dc
1 changed files with 11 additions and 1 deletions

View File

@ -1,10 +1,20 @@
{% extends "gadjo/base.html" %}
{% load static django_select2_tags %}
{% load i18n static django_select2_tags %}
{% block page-title %}{% firstof site_title "Welco" %}{% endblock %}
{% block site-title %}{% firstof site_title "Welco" %}{% endblock %}
{% block logout-url %}{% url 'auth_logout' %}{% endblock %}
{% block homepage-url %}
{% url 'home' as default_homepage_url %}
{% firstof manager_homepage_url default_homepage_url %}
{% endblock %}
{% block homepage-title %}
{% trans 'Home' as default_homepage_title %}
{% firstof manager_homepage_title default_homepage_title %}
{% endblock %}
{% block extrascripts %}
{{ block.super }}
<script src="{% static "js/datepicker-fr.js" %}"></script>