pfidp/templates: load staticfiles

This commit is contained in:
Thomas NOËL 2014-01-07 14:32:38 +01:00
parent 3ef1727ffe
commit 989e6c8766
6 changed files with 7 additions and 5 deletions

View File

@ -1,4 +1,4 @@
{% load i18n %}<!DOCTYPE html>
{% load i18n %}{% load staticfiles %}<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">

View File

@ -1,6 +1,5 @@
{% load i18n %} <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
{% load i18n %}{% load staticfiles %}<!DOCTYPE html>
<html lang="fr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" href="{% static "css/style.css" %}" />

View File

@ -1,4 +1,4 @@
<!DOCTYPE html>
{% load staticfiles %}<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">

View File

@ -1,5 +1,6 @@
{% extends "users_admin/base.html" %}
{% load i18n %}
{% load staticfiles %}
{% block title %}Créer un utilisateur{% endblock %}

View File

@ -1,5 +1,6 @@
{% extends "users_admin/base.html" %}
{% load i18n %}
{% load staticfiles %}
{% block title %}Accueil{% endblock %}

View File

@ -1,5 +1,6 @@
{% extends "users_admin/base.html" %}
{% load i18n %}
{% load staticfiles %}
{% block title %}Modifier un utilisateur{% endblock %}