templates/print/previewPayment.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %} {{ file }} {% endblock %}
  3. {% block body %}
  4.     <div class="breadcrumb">
  5.         <h1 class="mr-2">{{ file }}</h1>
  6.         <ul>
  7.             <li><a href="{{ path('default') }}">Accueil</a></li>
  8.             <li><a href="{{ path('treasury_cash_register_show', {'id': treasuryCashRegister.id}) }}">Retour</a></li>
  9.             <li><a href="{{ asset('downloads/' ~ dir ~ '/' ~ file) }}"  download>Télécharger</a></li>
  10.         </ul>
  11.     </div>
  12.     <div class="separator-breadcrumb border-top"></div>
  13.     <div class="row">
  14.         <div class="col-xl-12 col-lg-12 col-md-12 col-sm-12">
  15.             <embed src="{{ asset('downloads/' ~  dir ~ '/' ~ file) }}" width="100%" height="500" type='application/pdf'/>
  16.         </div>
  17.     </div>
  18. {% endblock %}