This commit is contained in:
birocarol 2016-03-22 10:56:40 +02:00
parent b8545ff0a6
commit feebcb68e1
1 changed files with 4 additions and 4 deletions

View File

@ -158,7 +158,7 @@ To understand a bit better let's take a look on the trips page which is built up
<span class="icon-bar"></span> <span class="icon-bar"></span>
</button> </button>
<a class="navbar-brand padding-rl10"> <a class="navbar-brand padding-rl10">
<span class="glyphicon glyphicon-user"></span> \{\{employeeData.first_name\}\} \\{\\{employeeData.last_name\\}\\} <span class="glyphicon glyphicon-user"></span> { {employeeData.first_name} } { {employeeData.last_name} }
</a> </a>
</div> </div>
<div class="navbar-header pull-right"> <div class="navbar-header pull-right">
@ -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' \}} { {trip.departure_date | date : 'dd.MM.yyyy'} }
</td> </td>
<td> <td>
'{'{ trip.departure '}'} { {trip.departure} }
</td> </td>
<td> <td>
{ { trip.destination } } { {trip.destination} }
</td> </td>
</tr> </tr>
</tbody> </tbody>