templates/front/investigation/office/investigationSeminar.html.twig line 1

Open in your IDE?
  1. {% extends 'index.html.twig' %}
  2. {% block breadcrumbs %}
  3.   <span class="breadcrumbs ps-3 ps-xl-5 ps-lg-4 text-danger">
  4.     Investigación<svg xmlns="http://www.w3.org/2000/svg"
  5.       width="16"
  6.       height="16"
  7.       fill="currentColor"
  8.       class="bi bi-chevron-compact-right align-middle"
  9.       viewBox="0 0 16 16">
  10.       <path fill-rule="evenodd"
  11.         d="M6.776 1.553a.5.5 0 0 1 .671.223l3 6a.5.5 0 0 1 0 .448l-3 6a.5.5 0 1 1-.894-.448L9.44 8 6.553 2.224a.5.5 0 0 1 .223-.671z" />
  12.     </svg>Oficina de Promoción de la Investigación<svg xmlns="http://www.w3.org/2000/svg"
  13.       width="16"
  14.       height="16"
  15.       fill="currentColor"
  16.       class="bi bi-chevron-compact-right align-middle"
  17.       viewBox="0 0 16 16">
  18.       <path fill-rule="evenodd"
  19.         d="M6.776 1.553a.5.5 0 0 1 .671.223l3 6a.5.5 0 0 1 0 .448l-3 6a.5.5 0 1 1-.894-.448L9.44 8 6.553 2.224a.5.5 0 0 1 .223-.671z" />
  20.     </svg>Seminarios de Investigación del CUD
  21.   </span>
  22. {% endblock %}
  23. {% block body %}
  24.   <div class="container-fluid content">
  25.     {{content[0].content |raw}}
  26.     <div class="row mx-auto m-3">
  27.       {{content[1].content |raw}}
  28.       {{content[2].content |raw}}
  29.       <div class="table-responsive">
  30.         <table class="table">
  31.           <thead>
  32.             <tr class="bg-danger text-white">
  33.               <th>Fecha</th>
  34.               <th>Ponente</th>
  35.               <th>Título</th>
  36.               <th>Lugar</th>
  37.             </tr>
  38.           </thead>
  39.           <tbody>
  40.           
  41.           {% for investigation in investigations %}
  42.               <tr>
  43.                 <td class="border border-secondary">{{investigation.startDate ? investigation.startDate|date('d/m/Y') : ''}}</td>
  44.                 <td class="border border-secondary">{{investigation.speaker}}</td>
  45.                 <td class="border border-secondary">{{investigation.title}}</td>
  46.                 <td class="border border-secondary">{{investigation.place}}</td>
  47.               </tr>
  48.               {% endfor %}
  49.           </tbody>
  50.         </table>
  51.       </div>
  52.     </div>
  53.   </div>
  54. {% endblock %}