osm-labo/templates/public/latest_changes.html.twig
2025-11-19 22:44:21 +01:00

80 lines
2.6 KiB
Twig

{% extends 'base.html.twig' %}
{% 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 " id="modified_places">
<h2 >Lieux modifiés</h2>
<table class="table table-striped table-hover table-responsive table-sort">
<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>
{% for place in places_modified %}
{% include 'public/place/row.html.twig' %}
{% endfor %}
</tbody>
</table>
</div>
<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>
<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>
</div>
{% endblock %}