travelProgramm
git-svn-id: http://78.47.251.156/svn/dev/sterntours-3@3450 f459cee4-fb09-11de-96c3-f9c5f16c3c76
This commit is contained in:
parent
5d9820f677
commit
7117fc6201
1 changed files with 8 additions and 0 deletions
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue