Projet

Général

Profil

0001-delete-superfluous-template-tag-call-25518.patch

Emmanuel Cazenave, 27 juillet 2018 16:53

Télécharger (1,26 ko)

Voir les différences:

Subject: [PATCH] delete superfluous template tag call (#25518)

 src/authentic2/templates/authentic2/base.html | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)
src/authentic2/templates/authentic2/base.html
1 1
{% extends "gadjo/base.html" %}
2
{% load i18n authentic2 %}
2
{% load i18n %}
3 3

  
4 4
{% block page-title %}Authentic2 - {{ request.get_host }}{% endblock %}
5 5

  
......
8 8
{% block css %}
9 9
  {{ block.super }}
10 10
  <link rel="stylesheet" href="{{ STATIC_URL }}authentic2/css/style.css" />
11
  {% renderblock "css" %}
12 11
  {{ form.media.css }}
13 12
{% endblock %}
14 13

  
......
18 17
  {% comment %}block extra_scripts is kept for compatibility with old themes{% endcomment %}
19 18
  {% block extra_scripts %}
20 19
  {% endblock %}
21
  {% renderblock "js" %}
22 20
{% endblock %}
23 21

  
24 22
{% block sidepage %}
......
38 36
{% endblock %}
39 37

  
40 38
{% block page-end %}
41
  {% renderblock "js-endpage" %}
42 39
{% endblock %}
43
-