osm-labo/templates/public/latest_changes.html.twig

81 lines
2.6 KiB
Twig
Raw Normal View History

2025-06-03 10:52:15 +02:00
{% extends 'base.html.twig' %}
{% block title %}Dernières modifications{% endblock %}
{% block body %}
2025-11-19 22:44:21 +01:00
<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">
2025-06-03 10:52:15 +02:00
<h1>Dernières modifications</h1>
2025-06-03 11:37:27 +02:00
<div class="row">
2025-11-19 22:44:21 +01:00
<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">
2025-06-03 10:52:15 +02:00
<thead>
<tr>
<th>Nom</th>
<th>Tag</th>
<th>Email</th>
<th>Date de modification</th>
<th>Date de dernier contact</th>
<th>Date de dernière modification</th>
<th>Code postal</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
2025-06-03 11:37:27 +02:00
{% for place in places_modified %}
{% include 'public/place/row.html.twig' %}
2025-06-03 10:52:15 +02:00
{% endfor %}
</tbody>
</table>
2025-06-03 11:37:27 +02:00
</div>
2025-11-19 22:44:21 +01:00
<div class="col-12 col-md-6 " id="displayed_places">
2025-06-03 11:37:27 +02:00
<h2>Lieux affichés</h2>
<table class="table table-striped table-hover table-responsive table-sort">
2025-06-03 11:37:27 +02:00
<thead>
<tr>
<th>Nom</th>
<th>Tag</th>
<th>Email</th>
<th>Date de dernière modification</th>
<th>Date de dernier contact</th>
<th>Date de dernière modification</th>
<th>Code postal</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
{% for place in places_displayed %}
{% include 'public/place/row.html.twig' %}
{% endfor %}
</tbody>
</table>
</div>
</div>
2025-11-19 22:44:21 +01:00
</div>
2025-06-03 10:52:15 +02:00
{% endblock %}