forked from DGNum/gestiojeux
ccd8ee9cc9
Models are now more structured for number of players, and durations can be omitted.
25 lines
589 B
HTML
25 lines
589 B
HTML
{% load static %}
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
{% include "partials/head.html" %}
|
|
{% block "extra_head" %}{% endblock %}
|
|
</head>
|
|
<body>
|
|
{% include "partials/header.html" %}
|
|
|
|
<main>
|
|
<div id="main_content" class="{% block "main_content_class" %}{% endblock %}">
|
|
{% include "partials/messages.html" %}
|
|
|
|
{% block "content" %}
|
|
{% endblock %}
|
|
</div>
|
|
</main>
|
|
|
|
{% include "partials/footer.html" %}
|
|
<script src="{% static "js/gestiojeux.js" %}"></script>
|
|
{% block "extra_foot" %}{% endblock %}
|
|
</body>
|
|
</html>
|