diff --git a/src/accounting/templates/accounting/account/detail.html b/src/accounting/templates/accounting/account/detail.html index 49a90f5..6c2fc3a 100644 --- a/src/accounting/templates/accounting/account/detail.html +++ b/src/accounting/templates/accounting/account/detail.html @@ -79,6 +79,11 @@ First written: 2023/1/31
{{ obj.title }}
{{ obj.code }}
+ {% if obj.is_offset_needed %} +
+ {{ A_("Offset needed") }} +
+ {% endif %}
{{ A_("Created") }} {{ obj.created_at }} {{ obj.created_by }}
{{ A_("Updated") }} {{ obj.updated_at }} {{ obj.updated_by }}
diff --git a/src/accounting/templates/accounting/account/include/form.html b/src/accounting/templates/accounting/account/include/form.html index 0f36bf1..48d87ab 100644 --- a/src/accounting/templates/accounting/account/include/form.html +++ b/src/accounting/templates/accounting/account/include/form.html @@ -62,6 +62,13 @@ First written: 2023/2/1
{% if form.title.errors %}{{ form.title.errors[0] }}{% endif %}
+
+ + +
+