This commit is contained in:
birocarol 2016-03-22 10:41:26 +02:00
parent c9dcb091fb
commit 1216914d2b

View file

@ -179,13 +179,13 @@ To understand a bit better let's take a look on the trips page which is built up
<tbody> <tbody>
<tr ng-repeat="trip in trips | orderBy : departure_date : reverse" ng-click="editTravel(trip.id)"> <tr ng-repeat="trip in trips | orderBy : departure_date : reverse" ng-click="editTravel(trip.id)">
<td> <td>
\{\{ trip.departure_date | date : 'dd.MM.yyyy'\}\} &#123;&#123; trip.departure_date | date : 'dd.MM.yyyy' &#125;&#125;
</td> </td>
<td> <td>
\{\{ trip.departure \}\} &#123;&#123; trip.departure &#125;&#125
</td> </td>
<td> <td>
\{\{ trip.destination \}\} &#123;&#123; trip.destination &#125;&#125
</td> </td>
</tr> </tr>
</tbody> </tbody>