templates/Default/_prices.html.twig line 1

Open in your IDE?
  1. <table class="prices">
  2.     <thead>
  3.     <tr>
  4.         <th><i class="icon-bus"></i><span>{{'result.company' | trans}}</span></th>
  5.         <th><i class="icon-departure"></i><span>{{'result.departure' | trans}}</span></th>
  6.         <th><i class="icon-arrival"></i><span>{{'result.arrival' | trans}}</span></th>
  7.         <th><i class="icon-hourglass"></i><span>{{'result.duration' | trans}}</span></th>
  8.         <th><i class="icon-price"></i><span>{{'result.price' | trans}}</span></th>
  9.     </tr>
  10.     </thead>
  11.     <tbody>
  12.     {# @var \App\Entity\Price[] prices #}
  13.     {# @var \App\Entity\Price p #}
  14.     {% for i,p in prices %}
  15.         <tr>
  16.             {% set carrier = p.carrierName | default(p.companyName) %}
  17.             <td class="companyName">
  18.                 <img src="{{ app_cdn }}{{ path('getimage', { id: p.companyId, type: p.typeName, name: p.carrierName }) }}" alt="{{carrier}}" />
  19.                 <span>{{ carrier }}</span>
  20.             </td>
  21.             <td>
  22.                 {{p.depDatetime | date("d/m - G:i") }} <br />
  23.                 {{ p.depStop is defined ? p.depStop.name : p.stopNameDep }}
  24.             </td>
  25.             <td>
  26.                 {{p.arrDatetime | date("G:i") }} <br />
  27.                 {{ p.arrStop is defined ? p.arrStop.name : p.stopNameArr }}
  28.             </td>
  29.             <td class="duration">{{ p.duration | cb_niceduration }}</td>
  30.             <td class="cents">
  31.                 <a rel="nofollow"
  32.                    class="redirect primary small"
  33.                    target="_blank"
  34.                    href="{{ path('redirectA', {
  35.                        'companyId':  p.companyId,
  36.                        'depStopExt': p.stopExtDep,
  37.                        'depStopId':  p.depStop.id,
  38.                        'arrStopExt': p.stopExtArr,
  39.                        'arrStopId':  p.arrStop.id,
  40.                        'dateFrom':   p.depDatetime | date("Y-m-d"),
  41.                        'link':       p.link,
  42.                        'cents':      p.cents,
  43.                        'currency':   p.currency,
  44.                    }) }}">
  45.                     {{ p.cents | cb_niceprice(p.currency) }}
  46.                     <i class="icon-arrow-right"></i>
  47.                 </a>
  48.             </td>
  49.         </tr>
  50.     {% endfor %}
  51.     </tbody>
  52. </table>