25 lines
734 B
Twig
25 lines
734 B
Twig
<div class="panel-body">
|
|
{% for entry in entries|sort((a,b) => a['bf_date_debut'] <=> b['bf_date_debut'])|reverse %}
|
|
<div>
|
|
<div>
|
|
<h5>
|
|
{% if entry['bf_date_debut'] == entry['bf_date_fin'] %}
|
|
{{ entry['bf_date_debut']|date("m/d/Y") }}
|
|
{% else %}
|
|
{{ entry['bf_date_debut']|date("m/d/Y H:i") }} - {{ entry['bf_date_fin']|date("m/d/Y H:i") }}
|
|
{% endif %}
|
|
<a class="btn btn-default btn-xs" href="{{ url({ tag: entry['id_fiche'], handler: 'edit' }) }}">
|
|
<i class="fa fa-pencil-alt"></i>
|
|
</a>
|
|
</h5>
|
|
</div>
|
|
<div>
|
|
{% if entry['bf_commentaire']|default %}
|
|
{{ entry['bf_commentaire'] }}
|
|
{% else %}
|
|
Aucune information
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|