diff --git a/drcr/templates/chart_of_accounts.html b/drcr/templates/chart_of_accounts.html index f3cb5f8..59b5aa6 100644 --- a/drcr/templates/chart_of_accounts.html +++ b/drcr/templates/chart_of_accounts.html @@ -1,5 +1,5 @@ {# DrCr: Web-based double-entry bookkeeping framework - Copyright (C) 2022–2023 Lee Yingtong Li (RunasSudo) + Copyright (C) 2022–2024 Lee Yingtong Li (RunasSudo) This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by @@ -15,16 +15,18 @@ along with this program. If not, see . #} -{% extends 'base.html' %} +{% extends 'base_tailwind.html' %} {% block title %}Chart of accounts{% endblock %} {% block content %} -

Chart of accounts

+

+ Chart of accounts +

-
-
- {% for plugin_name, plugin_account_kinds in account_kinds_by_plugin.items() %} {% for account_kind in plugin_account_kinds %} @@ -35,26 +37,26 @@
- +
- +
- - + + {% for account in accounts %} - - - - + + +
AccountAssociated typesAccountAssociated types
{{ account }} +
{{ account }} {% if account in account_configurations %} -
    +
      {% for account_configuration in account_configurations[account] %}
    • {{ account_kinds_map[account_configuration.kind] }}
    • {% endfor %}