Browse Source

HOT-FIX Removendo webpack_static de lugares desnecessários

pull/2894/head
ulyssesBML 6 years ago
committed by João
parent
commit
01a5861873
  1. 2
      sapl/templates/relatorios/header_ata.html
  2. 3
      sapl/templates/relatorios/relatorio_ata.html
  3. 4
      sapl/templates/relatorios/relatorio_doc_administrativos.html
  4. 3
      sapl/templates/relatorios/relatorio_sessao_plenaria.html

2
sapl/templates/relatorios/header_ata.html

@ -8,7 +8,7 @@
<html lang="pt-br"> <html lang="pt-br">
<head> <head>
<link rel="stylesheet" href="{% webpack_static 'sapl/css/header-relatorio.css'%}"> <link rel="stylesheet" href="{% static 'sapl/css/header-relatorio.css'%}">
</head> </head>
<body> <body>

3
sapl/templates/relatorios/relatorio_ata.html

@ -1,6 +1,5 @@
{% load common_tags %} {% load common_tags %}
{% load static %} {% load static %}
{% load webpack_static from webpack_loader %}
<head> <head>
<style> <style>
@page{ @page{
@ -34,7 +33,7 @@
} }
} }
</style> </style>
<link rel="stylesheet" href="{% webpack_static 'sapl/css/relatorio.css'%}"> <link rel="stylesheet" href="{% static 'sapl/css/relatorio.css'%}">
</head> </head>
<body> <body>

4
sapl/templates/relatorios/relatorio_doc_administrativos.html

@ -1,8 +1,6 @@
{% load i18n %} {% load i18n %}
{% load common_tags %} {% load common_tags %}
{% load crispy_forms_tags staticfiles %} {% load crispy_forms_tags staticfiles %}
{% load webpack_static from webpack_loader %}
<head> <head>
<style> <style>
@ -40,7 +38,7 @@
} }
} }
</style> </style>
<link rel="stylesheet" href="{% webpack_static '/sapl/css/relatorio.css'%}"> <link rel="stylesheet" href="{% static '/sapl/css/relatorio.css'%}">
</head> </head>
<body> <body>

3
sapl/templates/relatorios/relatorio_sessao_plenaria.html

@ -1,5 +1,4 @@
{% load static %} {% load static %}
{% load webpack_static from webpack_loader %}
<!DOCTYPE html> <!DOCTYPE html>
<meta charset="utf-8"> <meta charset="utf-8">
</meta> </meta>
@ -41,7 +40,7 @@
} }
} }
</style> </style>
<link rel="stylesheet" href="{% webpack_static 'sapl/css/relatorio.css'%}"> <link rel="stylesheet" href="{% static '/sapl/css/relatorio.css'%}">
</head> </head>
<body> <body>

Loading…
Cancel
Save