diff --git a/accountant-ui/views/accounts.html b/accountant-ui/views/accounts.html
index e0a0b83..c5ebcb6 100644
--- a/accountant-ui/views/accounts.html
+++ b/accountant-ui/views/accounts.html
@@ -38,19 +38,19 @@
+ ng-repeat="account in accountsCtrl.accounts | orderBy:'name'" ng-init="account.getSolds()">
{{ account.name }}
-
+
{{ account.solds.current | currency : "€" }}
-
+
{{ account.solds.pointed | currency : "€" }}
@@ -63,19 +63,19 @@
+ account-form-dialog ng-model="accountsCtrl.account">
+ ng-click="accountsCtrl.cancelEdit(rowform, account, $index)">
+ ng-click="accountsCtrl.delete(account, $index)">
diff --git a/accountant-ui/views/operations.html b/accountant-ui/views/operations.html
index a7b8c08..31208e3 100644
--- a/accountant-ui/views/operations.html
+++ b/accountant-ui/views/operations.html
@@ -14,18 +14,19 @@
You should have received a copy of the GNU Affero General Public License
along with Accountant. If not, see
.
-->
-
-
-
+
+
-
@@ -45,15 +46,16 @@
-
+
Ajouter
+ ng-class="{stroke: operation.canceled, italic: !operation.confirmed,
+ warning: operation.sold < 0, danger: operation.sold < operationsCtrl.account.authorized_overdraft}"
+ ng-repeat="operation in operationsCtrl.operations | orderBy:['-operation_date', '-value', 'label']">
{{ operation.operation_date | date:"yyyy-MM-dd" }}
@@ -66,7 +68,8 @@
{{ operation.value | currency:"€" }}
-
+
{{ operation.sold | currency:"€" }}
@@ -86,14 +89,14 @@
@@ -102,7 +105,7 @@
+ ng-click="operationsCtrl.delete(operation, $index)">
diff --git a/accountant-ui/views/scheduler.html b/accountant-ui/views/scheduler.html
index 2552387..fb495b3 100644
--- a/accountant-ui/views/scheduler.html
+++ b/accountant-ui/views/scheduler.html
@@ -33,14 +33,14 @@
-
+
Ajouter
+ ng-repeat="operation in schedulerCtrl.operations">