Projet

Général

Profil

0001-manager-directly-inherit-from-gadjo.html-9216.patch

Frédéric Péters, 05 décembre 2015 19:13

Télécharger (1,14 ko)

Voir les différences:

Subject: [PATCH] manager: directly inherit from gadjo.html (#9216)

 src/authentic2/manager/templates/authentic2/manager/base.html | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)
src/authentic2/manager/templates/authentic2/manager/base.html
1
{% extends "authentic2/base-page.html" %}
1
{% extends "gadjo/base.html" %}
2 2
{% load i18n staticfiles %}
3 3
{% load django_select2_tags %}
4 4
{% load firstof from future %}
5 5

  
6
{% block page-title %}
7
  {{ block.super }} - {% trans "Administration" %}
8
{% endblock %}
6
{% block page-title %}{% firstof site_title "Authentic2" %}{% endblock %}
7
{% block site-title %}{% firstof site_title "Authentic2" %}{% endblock %}
9 8

  
10 9
{% block css %}
11 10
  {{ block.super }}
12
-