ninefolio/templates/Illustration/listrender.html.twig

67 lines
3.3 KiB
Twig
Raw Normal View History

2024-10-30 17:58:39 +01:00
<p><a class="btn btn-success" href={{ path('app_illustration_submit',{by:by,userid:userid}) }}>Ajouter</a></p>
2024-10-30 22:06:14 +01:00
<div class="dataTable_wrapper" style="zoom:80%">
<table class="table table-striped table-bordered table-hover" id="illustrations" style="width:100%;">
2024-10-30 17:58:39 +01:00
<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 %}
2024-11-02 15:43:47 +01:00
<div style="width:90px; height:{{ height }}px;background-position: center ; background-size: cover; background-image: url(/{{ appAlias }}/uploads/illustration/{{source}}?{{illustration.updatetime|date('ymdHis')}});">
2024-10-30 17:58:39 +01:00
</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>