Projet

Général

Profil

0001-templates-load-static-library-using-load-static-5322.patch

Paul Marillonnet, 18 avril 2021 10:41

Télécharger (13 ko)

Voir les différences:

Subject: [PATCH] templates: load static library using {% load static %}
 (#53227)

 src/authentic2/manager/templates/authentic2/manager/base.html   | 2 +-
 .../manager/templates/authentic2/manager/ou_common.html         | 2 +-
 src/authentic2/manager/templates/authentic2/manager/ous.html    | 2 +-
 .../manager/templates/authentic2/manager/role_common.html       | 2 +-
 .../manager/templates/authentic2/manager/role_members.html      | 2 +-
 .../manager/templates/authentic2/manager/role_permissions.html  | 2 +-
 src/authentic2/manager/templates/authentic2/manager/roles.html  | 2 +-
 .../manager/templates/authentic2/manager/service.html           | 2 +-
 .../manager/templates/authentic2/manager/services.html          | 2 +-
 .../templates/authentic2/manager/user_authorizations.html       | 2 +-
 .../manager/templates/authentic2/manager/user_detail.html       | 2 +-
 .../manager/templates/authentic2/manager/user_export.html       | 2 +-
 .../manager/templates/authentic2/manager/user_import.html       | 2 +-
 .../templates/authentic2/manager/user_import_report.html        | 2 +-
 .../manager/templates/authentic2/manager/user_imports.html      | 2 +-
 src/authentic2/manager/templates/authentic2/manager/users.html  | 2 +-
 src/authentic2/templates/authentic2/login.html                  | 2 +-
 src/authentic2/templates/authentic2/login_password_form.html    | 2 +-
 src/authentic2_auth_fc/templates/authentic2_auth_fc/base.html   | 2 +-
 .../templates/authentic2_auth_fc/linking.html                   | 2 +-
 src/authentic2_auth_fc/templates/authentic2_auth_fc/login.html  | 2 +-
 src/authentic2_auth_fc/templates/authentic2_auth_fc/unlink.html | 2 +-
 22 files changed, 22 insertions(+), 22 deletions(-)
src/authentic2/manager/templates/authentic2/manager/base.html
1 1
{% extends "gadjo/base.html" %}
2
{% load i18n staticfiles %}
2
{% load i18n static %}
3 3

  
4 4
{% block gadjo-js %}{% endblock %}
5 5
{% block bodyargs %} class="{% block bodyclasses %}{% endblock %}"{% endblock %}
src/authentic2/manager/templates/authentic2/manager/ou_common.html
1 1
{% extends "authentic2/manager/base.html" %}
2
{% load i18n staticfiles %}
2
{% load i18n static %}
3 3

  
4 4
{% block title %}{{ block.super }} - {% trans "Organizational units" %}{% endblock %}
5 5

  
src/authentic2/manager/templates/authentic2/manager/ous.html
1 1
{% extends "authentic2/manager/ou_common.html" %}
2
{% load i18n staticfiles django_tables2 %}
2
{% load i18n static django_tables2 %}
3 3

  
4 4
{% block page-title %}{{ block.super }} - {% trans "Organizational units" %}{% endblock %}
5 5

  
src/authentic2/manager/templates/authentic2/manager/role_common.html
1 1
{% extends "authentic2/manager/base.html" %}
2
{% load i18n staticfiles %}
2
{% load i18n static %}
3 3

  
4 4
{% block title %}{{ block.super }} - {% trans "Roles" %}{% endblock %}
5 5

  
src/authentic2/manager/templates/authentic2/manager/role_members.html
1 1
{% extends "authentic2/manager/role_common.html" %}
2
{% load i18n staticfiles django_tables2 %}
2
{% load i18n static django_tables2 %}
3 3

  
4 4
{% block breadcrumb %}
5 5
  {{ block.super }}
src/authentic2/manager/templates/authentic2/manager/role_permissions.html
1 1
{% extends "authentic2/manager/role_common.html" %}
2
{% load i18n staticfiles django_tables2 %}
2
{% load i18n static django_tables2 %}
3 3

  
4 4
{% block breadcrumb %}
5 5
  {{ block.super }}
src/authentic2/manager/templates/authentic2/manager/roles.html
1 1
{% extends "authentic2/manager/role_common.html" %}
2
{% load i18n staticfiles django_tables2 %}
2
{% load i18n static django_tables2 %}
3 3

  
4 4
{% block page-title %}{{ block.super }} - {% trans "Roles" %}{% endblock %}
5 5

  
src/authentic2/manager/templates/authentic2/manager/service.html
1 1
{% extends "authentic2/manager/services.html" %}
2
{% load i18n staticfiles django_tables2 %}
2
{% load i18n static django_tables2 %}
3 3

  
4 4
{% block breadcrumb %}
5 5
  {{ block.super }}
src/authentic2/manager/templates/authentic2/manager/services.html
1 1
{% extends "authentic2/manager/base.html" %}
2
{% load i18n staticfiles django_tables2 %}
2
{% load i18n static django_tables2 %}
3 3

  
4 4
{% block page-title %}{{ block.super }} - {% trans "Services" %}{% endblock %}
5 5

  
src/authentic2/manager/templates/authentic2/manager/user_authorizations.html
1 1
{% extends "authentic2/manager/base.html" %}
2
{% load i18n staticfiles django_tables2 %}
2
{% load i18n static django_tables2 %}
3 3

  
4 4
{% block page-title %}{{ block.super }} - {% trans "Users" %}{% endblock %}
5 5

  
src/authentic2/manager/templates/authentic2/manager/user_detail.html
1 1
{% extends "authentic2/manager/form.html" %}
2
{% load i18n staticfiles %}
2
{% load i18n static %}
3 3

  
4 4
{% block appbar %}
5 5
  {{ block.super }}
src/authentic2/manager/templates/authentic2/manager/user_export.html
1 1
{% extends "authentic2/manager/base.html" %}
2
{% load i18n gadjo staticfiles %}
2
{% load i18n gadjo static %}
3 3

  
4 4
{% block page-title %}{{ block.super }} - {% trans "User export" %}{% endblock %}
5 5

  
src/authentic2/manager/templates/authentic2/manager/user_import.html
1 1
{% extends "authentic2/manager/base.html" %}
2
{% load i18n gadjo staticfiles %}
2
{% load i18n gadjo static %}
3 3

  
4 4
{% block page-title %}{{ block.super }} - {% trans "Import Users" %}{% endblock %}
5 5

  
src/authentic2/manager/templates/authentic2/manager/user_import_report.html
1 1
{% extends "authentic2/manager/base.html" %}
2
{% load i18n gadjo staticfiles %}
2
{% load i18n gadjo static %}
3 3

  
4 4
{% block page-title %}{{ block.super }} - {% trans "Import Users" %}{% endblock %}
5 5

  
src/authentic2/manager/templates/authentic2/manager/user_imports.html
1 1
{% extends "authentic2/manager/base.html" %}
2
{% load i18n gadjo staticfiles %}
2
{% load i18n gadjo static %}
3 3

  
4 4
{% block page-title %}{{ block.super }} - {% trans "Import Users" %}{% endblock %}
5 5

  
src/authentic2/manager/templates/authentic2/manager/users.html
1 1
{% extends "authentic2/manager/base.html" %}
2
{% load i18n staticfiles django_tables2 %}
2
{% load i18n static django_tables2 %}
3 3

  
4 4
{% block page-title %}{{ block.super }} - {% trans "Users" %}{% endblock %}
5 5

  
src/authentic2/templates/authentic2/login.html
1 1
{% extends "authentic2/base-page.html" %}
2
{% load i18n gadjo staticfiles %}
2
{% load i18n gadjo static %}
3 3

  
4 4
{% block gadjo-jquery %}{% endblock %}
5 5

  
src/authentic2/templates/authentic2/login_password_form.html
1
{% load i18n staticfiles gadjo %}
1
{% load i18n static gadjo %}
2 2

  
3 3
{% block login %}
4 4

  
src/authentic2_auth_fc/templates/authentic2_auth_fc/base.html
1 1
{% extends "authentic2/base-page.html"%}
2
{% load staticfiles %}
2
{% load static %}
3 3

  
4 4
{% block extra-css %}
5 5
<link rel="stylesheet" type="text/css" href="{% static 'authentic2_auth_fc/css/fc.css' %}"></link>
src/authentic2_auth_fc/templates/authentic2_auth_fc/linking.html
1
{% load staticfiles %}
1
{% load static %}
2 2
{% load i18n %}
3 3

  
4 4
<link rel="stylesheet" type="text/css" href="{% static 'authentic2_auth_fc/css/fc.css' %}">
src/authentic2_auth_fc/templates/authentic2_auth_fc/login.html
1
{% load staticfiles %}
1
{% load static %}
2 2
{% load i18n %}
3 3

  
4 4
{% block login %}
src/authentic2_auth_fc/templates/authentic2_auth_fc/unlink.html
1 1
{% extends "authentic2_auth_fc/base.html"%}
2
{% load staticfiles %}
2
{% load static %}
3 3
{% load i18n gadjo %}
4 4

  
5 5
{% block content %}
6
-