Use initial angular interpolation delimiters.
This commit is contained in:
@ -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"
|
||||
|
Reference in New Issue
Block a user