From de924efda0c04643a5f94e3aafa9978d770b331a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BE=9D=E7=91=AA=E8=B2=93?= Date: Sun, 16 Aug 2020 09:47:18 +0800 Subject: [PATCH] Revised the documentation of the AccountFormView of the accounting application. --- accounting/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/accounting/views.py b/accounting/views.py index ac9ebe3..5b2a7f6 100644 --- a/accounting/views.py +++ b/accounting/views.py @@ -983,7 +983,7 @@ class AccountView(DetailView): @method_decorator(login_required, name="dispatch") class AccountFormView(FormView): - """The account form.""" + """The form to create or update an account.""" model = Account form = AccountForm not_modified_message = gettext_noop("This account was not modified.")