diff --git a/_archives.html b/_archives.html
index 4385dff..0eed040 100644
--- a/_archives.html
+++ b/_archives.html
@@ -107,32 +107,66 @@
{{/select}}
{{/foreach}}
+
+
+ {{if $total_immo != 0}}
+ {{#foreach from=$sommes_immo|ksort key="code" item="value"}}
+
+ |
+ |
+ |
+ Total du compte {{$code}} |
+ {{$value|money}} |
+ |
+ |
+ |
+ |
+
+ {{/foreach}}
+
+ |
+ |
+ |
+ Total des immobilisations |
+ {{$total_immo|money}} |
+ |
+ |
+ |
+ |
+
+ {{/if}}
+ {{if $total_cessions != 0}}
+
+ |
+ |
+ {{#foreach from=$montant_cessions|ksort key="code" item="value"}}
+
+ |
+ |
+ |
+ Cessions du compte {{$code}} |
+ {{$value|money}} |
+ |
+ |
+ |
+ |
+
+ {{/foreach}}
+
+ |
+ |
+ |
+ Total des cessions |
+ {{$total_cessions|money}} |
+ |
+ |
+ |
+ |
+
+ {{/if}}
+
{{if $nb_immo == 0}}
Aucune immobilisation
- {{else}}
-
{{/if}}
diff --git a/_immobilisations.html b/_immobilisations.html
index ee13934..d27239d 100644
--- a/_immobilisations.html
+++ b/_immobilisations.html
@@ -187,22 +187,36 @@
{{/select}}
+
+ {{if $total_immo != 0}}
+ {{#foreach from=$sommes_immo|ksort key="code" item="value"}}
+
+ |
+ |
+ Total du compte {{$code}} |
+ {{$value|money}} |
+ |
+ |
+ |
+ |
+ |
+
+ {{/foreach}}
+
+ |
+ |
+ Total des immobilisations |
+ {{$total_immo|money}} |
+ |
+ |
+ |
+ |
+ |
+
+ {{/if}}
+
{{if $nb_immo == 0}}
Aucune immobilisation
- {{else}}
-
{{/if}}
diff --git a/_nav.html b/_nav.html
index 9c56bfb..979bbb4 100644
--- a/_nav.html
+++ b/_nav.html
@@ -37,7 +37,6 @@
{{if $current == "config"}}
{{/if}}
diff --git a/_unfinished.html b/_unfinished.html
index 7e8ae46..3e41d55 100644
--- a/_unfinished.html
+++ b/_unfinished.html
@@ -146,23 +146,35 @@
{{/select}}
+
+ {{if $total_immo != 0}}
+ {{#foreach from=$sommes_immo|ksort key="code" item="value"}}
+
+ |
+ |
+ |
+ Total du compte {{$code}} |
+ {{$value|money}} |
+ |
+ |
+ |
+
+ {{/foreach}}
+
+ |
+ |
+ |
+ Total des immobilisations |
+ {{$total_immo|money}} |
+ |
+ |
+ |
+
+ {{/if}}
+
{{if $nb_immo == 0}}
Aucune immobilisation
- {{else}}
-
{{/if}}
diff --git a/style.css b/style.css
index 3f65a59..55f8cdd 100644
--- a/style.css
+++ b/style.css
@@ -55,27 +55,3 @@ fieldset.shortFormLeft div.informations {
span.strong {
font-weight: bold;
}
-
-aside.totals {
- float : left;
- width : 30em;
-}
-
-aside.totals dl.describe {
- display: flex;
-}
-
-aside.totals dl.describe dt {
- text-align : right;
- flex : 0 0 20rem;
-}
-
-aside.totals dl.describe dt::after {
- content: ' : ';
-}
-
-aside.totals dl.describe dd {
- flex : 0 0 calc(100% - 25rem);
- text-align : right;
-}
-