Projet

Général

Profil

0004-dj32-rename-staticfiles-templatetags-lib-to-static-6.patch

Benjamin Dauvergne, 10 janvier 2023 15:38

Télécharger (1,56 ko)

Voir les différences:

Subject: [PATCH 4/4] dj32: rename staticfiles templatetags lib to static
 (#67950)

 bijoe/templates/bijoe/base.html     | 2 +-
 bijoe/templates/bijoe/cube.html     | 2 +-
 bijoe/templates/bijoe/cube_raw.html | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)
bijoe/templates/bijoe/base.html
1 1
{% extends "gadjo/base.html" %}
2
{% load i18n staticfiles %}
2
{% load i18n static %}
3 3

  
4 4
{% block css %}
5 5
  <link href="{% static "css/bijoe.css" %}" rel="stylesheet">
bijoe/templates/bijoe/cube.html
1 1
{% extends "bijoe/base.html" %}
2
{% load i18n staticfiles bijoe %}
2
{% load i18n bijoe static %}
3 3

  
4 4
{% block extrascripts %}
5 5
  {% import_django_select2_js_css %}
bijoe/templates/bijoe/cube_raw.html
1
{% load staticfiles gadjo %}<!DOCTYPE html>
1
{% load gadjo static %}<!DOCTYPE html>
2 2
<html>
3 3
  <head>
4 4
    <link rel="stylesheet" type="text/css" media="all" href="{{ STATIC_URL }}css/gadjo.css"/>
5
-