diff --git a/accounting/static/accounting/css/report.css b/accounting/static/accounting/css/report.css index c3581fb..1532573 100644 --- a/accounting/static/accounting/css/report.css +++ b/accounting/static/accounting/css/report.css @@ -103,15 +103,15 @@ .income-statement-table td .subject { text-indent: 2em; } -.income-statement-table tr.first-level-header { +.income-statement-table tr.section-title { font-weight: bolder; font-size: 1.21em; } -.income-statement-table tr.second-level-header { +.income-statement-table tr.group-title { font-weight: bolder; font-size: 1.1em; } -.income-statement-table td .second-level-header { +.income-statement-table td .group-title { text-indent: 1em; } .income-statement-table .total { @@ -119,7 +119,7 @@ font-size: 1.1em; font-weight: bolder; } -.income-statement-table .cum-total { +.income-statement-table .cumulative-total { font-size: 1.21em; font-weight: bolder; } @@ -127,7 +127,7 @@ background-color: transparent; border: none; } -.income-statement-list .first-level-header { +.income-statement-list .section-title { font-weight: bolder; font-size: 1.21em; } @@ -140,7 +140,7 @@ font-size: 1.1em; font-weight: bolder; } -.income-statement-list .cum-total { +.income-statement-list .cumulative-total { font-weight: bolder; font-size: 1.21em; } diff --git a/accounting/templates/accounting/income-statement.html b/accounting/templates/accounting/income-statement.html index a645361..43f27d5 100644 --- a/accounting/templates/accounting/income-statement.html +++ b/accounting/templates/accounting/income-statement.html @@ -93,7 +93,7 @@ First written: 2020/7/19 {% for section in item_list %} - +
{{ section.title|title|escape }}
@@ -101,8 +101,8 @@ First written: 2020/7/19 {% if section.groups %} {% for group in section.groups %} - -
{{ group.title|title|escape }}
+ +
{{ group.title|title|escape }}
@@ -136,7 +136,7 @@ First written: 2020/7/19 {% endif %} {% if section.cumulative_total is not None %} - +
{{ section.cumulative_total.title|title|escape }}
{{ section.cumulative_total.total|accounting_amount }} @@ -163,12 +163,12 @@ First written: 2020/7/19