Revised the documentation of the views.

This commit is contained in:
2023-02-03 09:26:11 +08:00
parent 5238168b2d
commit 7dc754174c
2 changed files with 10 additions and 4 deletions

View File

@ -46,7 +46,8 @@ def list_accounts() -> str:
def show_account_detail(account: BaseAccount) -> str:
"""Shows the account detail.
:return: The account detail.
:param account: The account.
:return: The detail.
"""
return render_template("accounting/base-account/detail.html", obj=account)