templates/home.html.twig line 1

Open in your IDE?
  1. {# templates/home.html.twig #}
  2. {% extends 'base.html.twig' %}
  3. {% block title %}The Great Escape 2017{% endblock %}
  4. {% block body %}
  5.     <p><strong>The Great Escape 2018</strong></p>
  6.     <span class="noprint">
  7.         <hr />
  8.         Ansicht:
  9.         <a href="/" class="">Liste</a> |
  10.         <a href="/index.php?filter=&type=*&von=*&datum=ja&rein=make+it+so" class="link">Druck</a>
  11.         <br /><hr />
  12.     </span>
  13. <table border="0" cellspacing="0" cellpadding="2" style="page-break-after:always">
  14.     <tr>
  15.         <th colspan="5" align="left"></th>
  16.     </tr>
  17.     <tr>
  18.         <th align="left">Zeit</th>
  19.         <th align="left">sehen</th>
  20.         <th align="left">Band</th>
  21.         <th align="left">Ort</th>
  22.         <th align="left">Note</th>
  23.     </tr>
  24. <table border="0" cellspacing="0" cellpadding="2" style="page-break-after:always">
  25.     <tr>
  26.         <th colspan="5" align="left">Donnerstag</th>
  27.     </tr>
  28.     <tr>
  29.         <th align="left">Zeit</th>
  30.         <th align="left">sehen</th>
  31.         <th align="left">Band</th>
  32.         <th align="left">Ort</th>
  33.         <th align="left">Note</th>
  34.     </tr>
  35. {% for event in events %}
  36.     <tr class="grey">
  37.         <td align="left" valign="top">{{ event.time }}</td>
  38.         <td align="left" valign="top">{{event.verdict}}</td>
  39.         <td align="left" valign="top" class="band" id="221"><a href="index.php?update=1&Band=Emme+Woods&philipp=ja&philipp_note=bottle+of+gin&Tag=Donnerstag&Zeit=12:30&Ort=Brighthelm Centre&id=221&datum=ja&id=221#neu">{{event.band}}</a><a href="index.php?Band=Emme+Woods&philipp=ja&philipp_note=bottle+of+gin&Tag=Donnerstag&Zeit=12:30&Ort=Brighthelm Centre&datum=ja#neu" class="noprint copy">++</a></td>
  40.         <td valign="top">{{event.place}}</td>
  41.         <td align="left" valign="top" style="overflow:hidden;">{{event.note}}</td>
  42.     </tr>
  43. {% endfor %}
  44. </table>
  45. TEST
  46. {{festivals}}
  47. {% endblock %}