templates/documentos/listar-tipo.html.twig line 1

Open in your IDE?
  1. <table class="table table-hover text-left table-responsive">
  2.     <thead>
  3.         <tr>
  4.             <th>Archivos para ver o descargar en pfd</th>
  5.         </tr>
  6.     </thead>
  7.     <tbody>
  8.         {% for documento in pagination %}
  9.             <tr>
  10.                 <td >
  11.                     <a href="{{ path('ipa_documentos_ver', {'tipo':documento.tipo.slug,'id':documento.id,'slug': documento.slug}) }}" >
  12.                         <strong style="font-size: 1.2em;">{{documento.titulo}}</strong><br/>
  13.                         {{documento.descripcion}}
  14.                     </a> 
  15.                 </td>
  16.             </tr>
  17.         {% endfor %}
  18.     </tbody>
  19. </table>        
  20. <div class="navigation">
  21.     {{ knp_pagination_render(pagination) }}
  22. </div>