diff --git a/accounting/static/accounting/css/report.css b/accounting/static/accounting/css/report.css
index 770d775..5861d6c 100644
--- a/accounting/static/accounting/css/report.css
+++ b/accounting/static/accounting/css/report.css
@@ -152,7 +152,7 @@
}
.balance-sheet-table tbody {
}
-.balance-sheet-table .second-level-header {
+.balance-sheet-table .group-title {
font-size: 1.1em;
font-weight: bolder;
}
@@ -181,7 +181,7 @@
font-weight: bolder;
border-bottom: thick double slategray;
}
-.balance-sheet-list .second-level-header {
+.balance-sheet-list .group-title {
font-size: 1.1em;
font-weight: bolder;
}
diff --git a/accounting/templates/accounting/balance-sheet.html b/accounting/templates/accounting/balance-sheet.html
new file mode 100644
index 0000000..5b97c4f
--- /dev/null
+++ b/accounting/templates/accounting/balance-sheet.html
@@ -0,0 +1,330 @@
+{% extends "base.html" %}
+{% comment %}
+The Mia Accounting Application
+cash.html: The template for the cash account reports
+
+ Copyright (c) 2020 imacat.
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+
+Author: imacat@mail.imacat.idv.tw (imacat)
+First written: 2020/7/20
+{% endcomment %}
+{% load static %}
+{% load i18n %}
+{% load humanize %}
+{% load mia_core %}
+{% load accounting %}
+
+{% block settings %}
+ {% blocktrans asvar title with period=period.description context "Accounting|" %}Balance Sheet in {{ period }}{% endblocktrans %}
+ {% setvar "title" title %}
+ {% setvar "use_period_chooser" True %}
+ {% static "accounting/css/report.css" as css %}
+ {% setvar "css" css %}
+{% endblock %}
+
+{% block content %}
+
+