Ajout modèle Chant

This commit is contained in:
Claude Paroz 2025-10-19 17:59:46 +02:00
parent 78cb3bae07
commit c7a08b3d3c
14 changed files with 220 additions and 11 deletions

View file

@ -8,6 +8,7 @@
<link href="{% static 'css/main.css' %}" rel="stylesheet">
<link rel="manifest" href="{% url 'manifest' %}" crossorigin="use-credentials">
<script src="{% static 'vendor/bootstrap.bundle.min.js' %}"></script>
<script src="{% static 'js/main.js' %}"></script>
</head>
<body class="{% block bodyclass %}{% endblock %}">
{% block header %}
@ -39,6 +40,17 @@
{% endblock header %}
<div class="container mt-4">
{% if messages %}
<ul class="list-unstyled messages">
{% for message in messages %}
<li class="alert {{ message.tags }} alert-dismissible" role="alert">
{{ message|linebreaksbr|capfirst }}
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
</li>
{% endfor %}
</ul>
{% endif %}
{% block content %}{% endblock %}
</div>
</body>