travelProgramm

git-svn-id: http://78.47.251.156/svn/dev/sterntours-3@3450 f459cee4-fb09-11de-96c3-f9c5f16c3c76
This commit is contained in:
adametz 2018-08-20 16:43:49 +00:00
parent 5d9820f677
commit 7117fc6201

View file

@ -234,7 +234,13 @@
</tr>
</thead>
<tbody>
{% set last_name = "" %}
{% for travel_date in travel_program.travelDates if travel_date.status > 0 %}
{% if last_name != travel_date.name %}
{% set last_name = travel_date.name %}
{# @var travel_date \AppBundle\Entity\TravelDate #}
<tr>
<td data-title="Nr."><strong class="small">{{ travel_date.name }}</strong></td>
@ -339,6 +345,8 @@
</a>
</td>
</tr>
{% endif %}
{% endfor %}
</tbody>
</table>