mirror of
https://forge.chapril.org/tykayn/osm-commerces
synced 2025-06-20 01:44:42 +02:00
style dashboard, remove bike parking in places selection
This commit is contained in:
parent
5a05cd22d1
commit
4c1a7729a1
5 changed files with 59 additions and 15 deletions
|
@ -217,6 +217,30 @@ out skel qt;`;
|
|||
</tbody>
|
||||
</table>
|
||||
|
||||
{% if totalPages > 1 %}
|
||||
<nav aria-label="Page navigation">
|
||||
<ul class="pagination justify-content-center">
|
||||
{% if currentPage > 1 %}
|
||||
<li class="page-item">
|
||||
<a class="page-link" href="{{ path('app_public_dashboard', {'page': currentPage - 1}) }}">Précédent</a>
|
||||
</li>
|
||||
{% endif %}
|
||||
|
||||
{% for i in 1..totalPages %}
|
||||
<li class="page-item {% if i == currentPage %}active{% endif %}">
|
||||
<a class="page-link" href="{{ path('app_public_dashboard', {'page': i}) }}">{{ i }}</a>
|
||||
</li>
|
||||
{% endfor %}
|
||||
|
||||
{% if currentPage < totalPages %}
|
||||
<li class="page-item">
|
||||
<a class="page-link" href="{{ path('app_public_dashboard', {'page': currentPage + 1}) }}">Suivant</a>
|
||||
</li>
|
||||
{% endif %}
|
||||
</ul>
|
||||
</nav>
|
||||
{% endif %}
|
||||
|
||||
<h2>{{ places_count }} Lieux</h2>
|
||||
<h2><button class="btn btn-primary" id="labourer">Labourer les mises à jour</button></h2>
|
||||
<label for="app_admin_labourer">Rechercher une ville par son nom
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue