ninefolio/templates/Link/list.html.twig

56 lines
2.1 KiB
Twig
Raw Permalink Normal View History

2024-09-17 14:02:17 +02:00
{% extends "base.html.twig" %}
{% block body %}
<h1 class="page-header">
LIENS
</h1>
<p><a class="btn btn-success" href={{ path('app_link_submit') }}>Ajouter</a></p>
<div class="card">
<div class="card-header">
<i class="fa fa-table fa-fw"></i> Liste des Liens
</div>
<div class="card-body">
<div class="dataTable_wrapper">
<table class="table table-striped table-bordered table-hover" id="dataTables" style="width:100%">
<thead>
<tr>
<th width="70px" class="no-sort">Action</th>
<th width="70px">Ordre</th>
<th>Nom</th>
<th>URL</th>
</tr>
</thead>
<tbody>
{% for link in links %}
<tr>
<td>
<a href="{{path("app_link_update",{id:link.id})}}"><i class="fa fa-file"></i></a>
{% if link.id >=0 %}
<a href="{{path("app_link_delete",{id:link.id})}}" data-method="delete" data-confirm="Êtes-vous sûr de vouloir supprimer cet enregistrement ?"><i class="fa fa-trash"></i></a>
{% endif %}
</td>
<td>{{link.order}}</td>
<td>{{link.name}}</td>
<td><a href="{{link.url}}" target="_blank">{{link.url}}</a></td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
</div>
{% endblock %}
{% block localjavascript %}
$(document).ready(function() {
$('#dataTables').DataTable({
columnDefs: [ { "targets": "no-sort", "orderable": false }, { "targets": "no-string", "type" : "num" } ],
responsive: true,
iDisplayLength: 100,
order: [[ 1, "asc" ]]
});
});
{% endblock %}