upgrade to symfony 7.3

This commit is contained in:
Tykayn 2025-11-19 22:44:21 +01:00 committed by tykayn
parent 971b95b299
commit 0448d3cc17
9 changed files with 1481 additions and 1125 deletions

View file

@ -3,12 +3,33 @@
{% block title %}Dernières modifications{% endblock %}
{% block body %}
<style>
#last_modifications {
margin-top: 2rem;
margin-bottom: 2rem;
border-left: 3px solid grey;
padding: 1rem;
}
#modified_places {
margin-bottom: 2rem;
border-left: 3px solid grey;
background-color: #f0f0f0;
padding: 1rem;
}
#displayed_places {
margin-bottom: 2rem;
border-left: 3px solid grey;
padding: 1rem;
background-color: #f0f0f0;
}
</style>
<div id="last_modifications">
<h1>Dernières modifications</h1>
<div class="row">
<div class="col-12 col-md-6 ">
<h2>Lieux modifiés</h2>
<div class="col-12 col-md-6 " id="modified_places">
<h2 >Lieux modifiés</h2>
<table class="table table-striped table-hover table-responsive table-sort">
<thead>
<tr>
@ -31,7 +52,7 @@
</table>
</div>
<div class="col-12 col-md-6 ">
<div class="col-12 col-md-6 " id="displayed_places">
<h2>Lieux affichés</h2>
<table class="table table-striped table-hover table-responsive table-sort">
<thead>
@ -54,5 +75,6 @@
</table>
</div>
</div>
</div>
{% endblock %}