mirror of
https://forge.chapril.org/tykayn/osm-commerces
synced 2025-10-04 17:04:53 +02:00
87 lines
No EOL
4.1 KiB
Twig
87 lines
No EOL
4.1 KiB
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block title %}Changements récents Wiki OSM{% endblock %}
|
|
|
|
{% block body %}
|
|
<div class="container mt-4">
|
|
{% include 'admin/_wiki_navigation.html.twig' %}
|
|
|
|
<h1>Changements récents Wiki OpenStreetMap</h1>
|
|
<p class="lead">Liste des changements récents dans l'espace de noms français du wiki OpenStreetMap.</p>
|
|
|
|
{% if last_updated %}
|
|
<div class="alert alert-info">
|
|
<i class="bi bi-info-circle"></i> Dernière mise à jour : {{ last_updated|date('d/m/Y H:i') }}
|
|
</div>
|
|
{% endif %}
|
|
|
|
<div class="card mb-4">
|
|
<div class="card-header bg-primary text-white">
|
|
<h2>Changements récents</h2>
|
|
<p class="mb-0">
|
|
<a href="https://wiki.openstreetmap.org/w/index.php?hidebots=1&hidepreviousrevisions=1&hidecategorization=1&hideWikibase=1&hidelog=1&hidenewuserlog=1&namespace=202&limit=500&days=30&enhanced=1&title=Special:RecentChanges&urlversion=2"
|
|
target="_blank" class="text-white">
|
|
<i class="bi bi-box-arrow-up-right"></i> Voir sur le wiki OSM
|
|
</a>
|
|
</p>
|
|
</div>
|
|
<div class="card-body">
|
|
{% if recent_changes|length > 0 %}
|
|
<div class="table-responsive">
|
|
<table class="table table-striped table-hover">
|
|
<thead class="thead-dark">
|
|
<tr>
|
|
<th>Page</th>
|
|
<th>Date</th>
|
|
<th>Utilisateur</th>
|
|
<th>Commentaire</th>
|
|
<th>Taille</th>
|
|
<th>Actions</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for change in recent_changes %}
|
|
<tr>
|
|
<td>
|
|
<strong>{{ change.page_name }}</strong>
|
|
</td>
|
|
<td>{{ change.timestamp }}</td>
|
|
<td>{{ change.user }}</td>
|
|
<td>{{ change.comment }}</td>
|
|
<td>{{ change.change_size }}</td>
|
|
<td>
|
|
<a href="{{ change.page_url }}" target="_blank" class="btn btn-sm btn-outline-primary">
|
|
<i class="bi bi-box-arrow-up-right"></i> Voir
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
{% else %}
|
|
<div class="alert alert-info">
|
|
<p><i class="bi bi-info-circle"></i> Aucun changement récent n'a été trouvé.</p>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
|
|
<div class="card mb-4">
|
|
<div class="card-header">
|
|
<h2>À propos des changements récents</h2>
|
|
</div>
|
|
<div class="card-body">
|
|
<p>Cette page affiche les changements récents dans l'espace de noms français (FR:) du wiki OpenStreetMap.</p>
|
|
<p>Ces informations sont utiles pour suivre les traductions manquantes et les mises à jour des pages wiki.</p>
|
|
<p>Les données sont mises à jour automatiquement toutes les heures.</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="mt-3">
|
|
<a href="{{ path('app_admin_wiki') }}" class="btn btn-secondary">
|
|
<i class="bi bi-arrow-left"></i> Retour à la liste des pages wiki
|
|
</a>
|
|
</div>
|
|
</div>
|
|
{% endblock %} |