{% extends 'base_admin.html.twig' %} {% block title %}AlpybusTransfer Grids{% endblock %} {% block body %}
# | From | To | Start Date | End Date | Private/Shared | Max Pax | Min Hour | Max Hour | Latest Scrape Date | Previous Scrape Date | Action |
---|---|---|---|---|---|---|---|---|---|---|---|
{{ alpybus_transfer_grid.id }} | {{ alpybus_transfer_grid.departure.city }} ({{ alpybus_transfer_grid.departure.code }}) | {{ alpybus_transfer_grid.arrival.city }} ({{ alpybus_transfer_grid.arrival.code }}) | {% if alpybus_transfer_grid.startDate|date('Y-m-d') <= today %} {{ alpybus_transfer_grid.startDate ? alpybus_transfer_grid.startDate|date('d-M-Y') : '' }} {% else %} {{ alpybus_transfer_grid.startDate ? alpybus_transfer_grid.startDate|date('d-M-Y') : '' }} {% endif %} | {% if alpybus_transfer_grid.endDate|date('Y-m-d') <= today %} {{ alpybus_transfer_grid.endDate ? alpybus_transfer_grid.endDate|date('d-M-Y') : '' }} {% else %} {{ alpybus_transfer_grid.endDate ? alpybus_transfer_grid.endDate|date('d-M-Y') : '' }} {% endif %} | {{ alpybus_transfer_grid.privateShared }} | {{ alpybus_transfer_grid.maxPax }} | {{ alpybus_transfer_grid.minHour }}:00h | {{ alpybus_transfer_grid.maxHour }}:00h | {% if alpybus_transfer_grid.latestScrapeDate is not null %} {{ alpybus_transfer_grid.latestScrapeDate|date('d-M-Y') }} {% else %} ---- {% endif %} | {% if alpybus_transfer_grid.previousScrapeDate is not null %} {{ alpybus_transfer_grid.previousScrapeDate|date('d-M-Y') }} {% else %} ---- {% endif %} | {# Add transfer records#} {% set grid = alpybus_transfer_grid.id %} Go to prices |