36 lines
1000 B
HTML
36 lines
1000 B
HTML
{% load static %}<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<title>{% block title %}{% endblock %}{% block title_suffix %}- Fournée{% endblock %}</title>
|
|
|
|
{% block css %}
|
|
<link rel="stylesheet" href="{% static "main.css" %}">
|
|
{% endblock %}
|
|
|
|
{% block javascript %}
|
|
<script>
|
|
window.STATIC_URL = '{% get_static_prefix %}';
|
|
</script>
|
|
<script src="{% static "main.js" %}"></script>
|
|
{% endblock %}
|
|
|
|
{% block extra_head %}{% endblock %}
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
{% if messages %}
|
|
{% for message in messages %}
|
|
<div class="alert{% if message.tags %} {{ message.tags }}{% endif %}">{{ message }}</div>
|
|
{% endfor %}
|
|
{% endif %}
|
|
|
|
{% block content %}
|
|
<p>Utilisez ce modèle pour démarrer rapidement une nouvelle application.</p>
|
|
{% endblock %}
|
|
</div>
|
|
</body>
|
|
</html>
|