templates/report/overview.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block body %}
  3.   <h3>Verfügbare Editionen für BL {{ compilation.title }}</h3>
  4.     <table>
  5.       <tr>
  6.         <th>Id</th>
  7.         <th>Title</th>
  8.         <th>Code</th>
  9.         <th></th>
  10.         <th></th>
  11.       </tr>
  12.     {% for edition in editions %}
  13.       <tr>
  14.         <td style="padding:0 4px 0 4px;">{{ edition[0].edition.id }}</td>
  15.         <td style="padding:0 4px 0 4px;">{{ edition[0].edition.title }}</td>
  16.         <td style="padding:0 4px 0 4px;">{{ edition[0].edition.codeTitle }}</td>
  17.         <td style="padding:0 4px 0 4px;"><a href="{{ path('PapyrillioBeehive_ReportPrint', {'compilationVolume': compilation.volume, 'editionId': edition[0].edition.id}) }}">PRINT</a> </td>
  18.         <td style="padding:0 4px 0 4px;"><!--a href="{{ path('PapyrillioBeehive_ReportPdf', {'compilationVolume': compilation.volume, 'editionId': edition[0].edition.id}) }}">PDF</a--></td>
  19.       </tr>
  20.       
  21.     {% endfor %}
  22.     </table>
  23. {% endblock %}
  24. {% block javascripts %}
  25.   {{ parent() }}
  26.   
  27.   <script src="{{ asset('js/jquery/jquery-jeditable.min.js') }}" type="text/javascript"></script>
  28.   <script type="text/javascript">
  29.     $(function(){
  30.       $('span#print').click(function(event){window.print();});
  31.     });
  32.   </script>
  33. {% endblock %}