templates/apiary/snippetBoep.html.twig line 1

Open in your IDE?
  1. {% set edition = '' %}
  2. {% set text = '' %}
  3. {% set collection = '' %}
  4. <table class="apiary">
  5.   <!--thead>
  6.     <tr>
  7.       <th class="edition">Edition</th>
  8.       <th class="text">Text</th>
  9.       <th class="position">Position</th>
  10.       <th class="description">Description</th>
  11.       <th class="bl">BL</th>
  12.     </tr>
  13.   </thead-->
  14.   <tbody>
  15.     {% for c in corrections %}
  16.       {% if type == 'boep' and id != 'Bulletin of Online Emendations to Papyri' %}
  17.         {% set currentCollection = c.registerEntries|length and c.registerEntries|first.dclp|length ? 'DCLP' : 'DDB' %}
  18.         {% if currentCollection != collection %}
  19.           <tr><th colspan="5"><h3 id="{{ currentCollection }}">{{ currentCollection }} <span><a href="#top" title="zurück zum Anfang" class="backtotop">⇧</a></span></h3></th></tr>
  20.           {% set collection = currentCollection %}
  21.         {% endif %}
  22.       {% endif %}
  23.       <tr id="{{ c.id }}">
  24.         <td {{ c.edition.title != edition ? 'id=' ~ c.edition.title|replace({' ': '_', '.': ''}) : '' }} class="edition">
  25.           {% if c.edition.title != edition %}
  26.             {{ c.edition.title }}
  27.             {% set edition = c.edition.title %}
  28.             {% set text = '' %}
  29.           {% endif %}
  30.         </td>
  31.         <td class="text">
  32.           {% if c.text != text %}
  33.             {% if c.registerEntries|length and c.registerEntries|first and (c.registerEntries|first.hgv or c.registerEntries|first.tm) %}
  34.               <a href="{{ path('PapyrillioBeehive_ApiaryHoney', {'type': (c.registerEntries|first.hgv ? 'hgv' : 'tm'), 'id': (c.registerEntries|first.hgv ? c.registerEntries|first.hgv : c.registerEntries|first.tm) }) }}" title="Alle Einträge für {{ c.registerEntries|first }}">{{ c.text }}</a>
  35.             {% else %}
  36.               {{ c.text }}
  37.             {% endif %}
  38.             {% set text = c.text %}
  39.           {% endif %}
  40.         </td>
  41.         <td class="position">{{ c.position }}</td>
  42.         <td class="description">{{ c.description }}</td>
  43.         <td class="bl">
  44.           <a href="{{ path('PapyrillioBeehive_ApiaryCorrectionInfo', {'id': c.id}) }}" title="{{ c.compilation.title }}{% if c.compilationIndex %}&nbsp;{{ c.compilationIndex }}{% endif %}">{{ c.compilation.short }}{% if c.compilationIndex %}&nbsp;{{ c.compilationIndex }}{% endif %}</a>
  45.         </td>
  46.       </tr>
  47.     {% endfor %}
  48.   </tbody>
  49. </table>