{% extends 'base.html.twig' %}
{% block title %} {{ file }} {% endblock %}
{% block body %}
<div class="breadcrumb">
<h1 class="mr-2">{{ file }}</h1>
<ul>
<li><a href="{{ path('default') }}">Accueil</a></li>
<li><a href="{{ path('treasury_cash_register_show', {'id': treasuryCashRegister.id}) }}">Retour</a></li>
<li><a href="{{ asset('downloads/' ~ dir ~ '/' ~ file) }}" download>Télécharger</a></li>
</ul>
</div>
<div class="separator-breadcrumb border-top"></div>
<div class="row">
<div class="col-xl-12 col-lg-12 col-md-12 col-sm-12">
<embed src="{{ asset('downloads/' ~ dir ~ '/' ~ file) }}" width="100%" height="500" type='application/pdf'/>
</div>
</div>
{% endblock %}