67 lines
3.3 KiB
Twig
67 lines
3.3 KiB
Twig
<p><a class="btn btn-success" href={{ path('app_illustration_submit',{by:by,userid:userid}) }}>Ajouter</a></p>
|
|
|
|
<div class="dataTable_wrapper" style="zoom:80%">
|
|
<table class="table table-striped table-bordered table-hover" id="illustrations" style="width:100%;">
|
|
<thead>
|
|
<tr>
|
|
<th width="70px" class="no-sort">Action</th>
|
|
<th width="70px" class="no-sort">Miniature</th>
|
|
<th width="70px">Date</th>
|
|
<th width="100px">Catégorie</th>
|
|
<th>Nom</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for illustration in illustrations %}
|
|
<tr>
|
|
<td>
|
|
<a href="{{path("app_illustration_update",{id:illustration.id,by:by,userid:userid})}}"><i class="fa fa-file"></i></a>
|
|
{% if illustration.id >=0 %}
|
|
<a href="{{path("app_illustration_delete",{id:illustration.id,by:by,userid:userid})}}" data-method="delete" data-confirm="Êtes-vous sûr de vouloir supprimer cet enregistrement ?"><i class="fa fa-trash"></i></a>
|
|
{% endif %}
|
|
<a style="cursor:pointer" onClick="ModalLoad('extraLargeModal','Illustration','{{ path('app_illustration_crop',{"type":"illustration","reportinput":"refresh"}) }}?file={{illustration.illustration}}');"><i class="fa fa-arrows-alt" aria-hidden="true"></i></a>
|
|
</td>
|
|
|
|
<td>
|
|
|
|
{% set appthumbheight=app.session.get("appthumbheight") %}
|
|
{% if illustration.category.usecategoryconfig %}
|
|
{% set appthumbwidth=illustration.category.appthumbwidth %}
|
|
{% set appthumbheight=illustration.category.appthumbheight %}
|
|
{% endif %}
|
|
|
|
{% set source="thumb_"~illustration.illustration %}
|
|
{% if appthumbheight!=0 %}
|
|
{% set source="thumbori_"~illustration.illustration %}
|
|
{% endif %}
|
|
|
|
{% if appthumbheight==0 %}
|
|
{% set height=90 %}
|
|
{% elseif appthumbheight==1 %}
|
|
{% set height=illustration.height*90/illustration.width %}
|
|
{% else %}
|
|
{% set height=30*90/21 %}
|
|
{% endif %}
|
|
|
|
<div style="width:90px; height:{{ height }}px;background-position: center ; background-size: cover; background-image: url(/{{ appAlias }}/uploads/illustration/{{source}}?v={{ random(0, 10000) }}");">
|
|
|
|
</td>
|
|
<td>{{ illustration.submittime|date("Y-m-d H:i") }}</td>
|
|
<td>{{ illustration.category.name }}</td>
|
|
<td>{{ illustration.name }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<script>
|
|
$(document).ready(function() {
|
|
$('#illustrations').DataTable({
|
|
columnDefs: [ { "targets": "no-sort", "orderable": false }, { "targets": "no-string", "type" : "num" } ],
|
|
responsive: true,
|
|
iDisplayLength: 10,
|
|
order: [[ 2, "desc" ]]
|
|
});
|
|
});
|
|
</script> |