Ad sold columns in account list.
This commit is contained in:
parent
89b8c7925a
commit
d09d5ace17
@ -22,6 +22,8 @@
|
||||
<thead>
|
||||
<tr>
|
||||
<th class="">Nom du compte</th>
|
||||
<th class="col-md-1">Solde courant</th>
|
||||
<th class="col-md-1">Solde pointé</th>
|
||||
<th class="col-md-1">Découvert autorisé</th>
|
||||
<th class="col-md-1">Actions</th>
|
||||
</tr>
|
||||
@ -34,6 +36,10 @@
|
||||
<input type="text" class="form-control" ng-model="newAccount.name" />
|
||||
</td>
|
||||
|
||||
<td></td>
|
||||
|
||||
<td></td>
|
||||
|
||||
<td>
|
||||
<input type="text" class="form-control"
|
||||
ng-model="newAccount.authorized_overdraft" />
|
||||
@ -55,7 +61,9 @@
|
||||
</tr>
|
||||
|
||||
<tr id="account_[[account.id]]" class="form-inline" ng-repeat="account in accounts">
|
||||
<td>[[ account.name ]]</td>
|
||||
<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">
|
||||
|
Loading…
Reference in New Issue
Block a user