Projet

Général

Profil

0001-templates-inherit-from-mellon-s-base.html.patch

Serghei Mihai (congés, retour 15/05), 15 janvier 2015 15:20

Télécharger (1,83 ko)

Voir les différences:

Subject: [PATCH] templates inherit from mellon's base.html

 mellon/templates/mellon/authentication_failed.html | 2 +-
 mellon/templates/mellon/base.html                  | 1 +
 mellon/templates/mellon/inactive_user.html         | 2 +-
 mellon/templates/mellon/user_not_found.html        | 2 +-
 4 files changed, 4 insertions(+), 3 deletions(-)
 create mode 100644 mellon/templates/mellon/base.html
mellon/templates/mellon/authentication_failed.html
1
{% extends "base.html" %}
1
{% extends "mellon/base.html" %}
2 2
{% load i18n %}
3 3

  
4 4
{% block extra_scripts %}
mellon/templates/mellon/base.html
1
{% extends "base.html" %}
mellon/templates/mellon/inactive_user.html
1
{% extends "base.html" %}
1
{% extends "mellon/base.html" %}
2 2
{% load i18n %}
3 3

  
4 4
{% block content %}
mellon/templates/mellon/user_not_found.html
1
{% extends "base.html" %}
1
{% extends "mellon/base.html" %}
2 2
{% load i18n %}
3 3

  
4 4
{% block content %}
5
-