Ajout modèle Chant
This commit is contained in:
parent
78cb3bae07
commit
c7a08b3d3c
14 changed files with 220 additions and 11 deletions
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue