Use initial angular interpolation delimiters.

This commit is contained in:
Alexis Lahouze
2015-07-19 15:12:17 +02:00
parent 7d63176e7e
commit 28ab2fd7f3
9 changed files with 36 additions and 66 deletions

View File

@ -60,11 +60,11 @@
</td>
</tr>
<tr id="account_[[account.id]]" class="form-inline" ng-if="!account.edit" ng-repeat-start="account in accounts">
<td><a href="account/[[ account.id ]]/entries">[[ account.name ]]</a></td>
<td>[[ account.current ]]</td>
<td>[[ account.pointed ]]</td>
<td>[[ account.authorized_overdraft ]]</td>
<tr id="account_{{account.id}}" class="form-inline" ng-if="!account.edit" ng-repeat-start="account in accounts">
<td><a href="account/{{ account.id }}/entries">{{ account.name }}</a></td>
<td>{{ account.current }}</td>
<td>{{ account.pointed }}</td>
<td>{{ account.authorized_overdraft }}</td>
<td>
<div class="btn-group">
<button class="btn btn-xs btn-success"
@ -78,20 +78,20 @@
</button>
<a class="btn btn-xs btn-default"
href="account/[[ account.id ]]/scheduler">
href="account/{{ account.id }}/scheduler">
<span class="fa fa-clock-o"></span>
</a>
</div>
</td>
</tr>
<tr id="account_[[account.id]]" class="form-inline" ng-if="account.edit" ng-repeat-end>
<tr id="account_{{account.id}}" class="form-inline" ng-if="account.edit" ng-repeat-end>
<td>
<input type="text" class="form-control" ng-model="account.name" />
</td>
<td>[[ account.current ]]</td>
<td>[[ account.pointed ]]</td>
<td>{{ account.current }}</td>
<td>{{ account.pointed }}</td>
<td>
<input type="text" class="form-control"