2018-05-26 16:55:07 +02:00
|
|
|
{% load static %}
|
2018-05-26 16:01:04 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2020-09-11 18:35:57 +02:00
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2021-05-26 22:01:47 +02:00
|
|
|
<title>{% block title %}page title{% endblock %}</title>
|
2018-05-26 16:55:07 +02:00
|
|
|
<link rel="stylesheet" href="{% static 'css/main.css' %}">
|
2018-05-26 16:01:04 +02:00
|
|
|
{% block extrahead %}
|
|
|
|
{% endblock %}
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<div id="content">
|
|
|
|
{% block content %}
|
|
|
|
{% endblock %}
|
|
|
|
</div>
|
|
|
|
<hr>
|
2018-05-26 16:55:07 +02:00
|
|
|
{% block footer %}
|
2018-05-26 16:01:04 +02:00
|
|
|
<div style="text-align: right;"><a href="{% url 'admin:index' %}">Gestion</a></div>
|
2018-05-26 16:55:07 +02:00
|
|
|
{% endblock %}
|
2018-05-26 16:01:04 +02:00
|
|
|
</body>
|
|
|
|
</html>
|