ninestat/src/ninestat-1.0/src/Cadoles/CoreBundle/Resources/views/Application/list.html.twig

51 lines
1.8 KiB
Twig

{% extends "CadolesCoreBundle::base.html.twig" %}
{% block pagewrapper %}
<h1 class="page-header">
APPLICATIONS
</h1>
<p><a class="btn btn-success" href={{ path('cadoles_core_config_application_submit') }}>Ajouter</a></p>
<div class="panel panel-primary">
<div class="panel-heading">
<i class="fa fa-table fa-fw"></i> Liste des Applications
</div>
<div class="panel-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>Application</th>
<th class="no-string">Paquet</th>
</tr>
</thead>
<tbody>
{% for application in applications %}
<tr>
<td>
<a href="{{path("cadoles_core_config_application_update",{id:application.id})}}"><i class="fa fa-file"></i></a>
</td>
<td>{{application.name}}</td>
<td>{{application.package}}</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 %}