Renamed the transaction_create() view to transaction_edit() in the accounting application.

This commit is contained in:
2020-07-28 03:10:45 +08:00
parent 78cac61cd5
commit 9aa85b6ae8
2 changed files with 4 additions and 4 deletions

View File

@ -862,8 +862,8 @@ def transaction_show(request, type, transaction):
@require_GET
@digest_login_required
def transaction_create(request, type, transaction=None):
"""The view to create an accounting transaction.
def transaction_edit(request, type, transaction=None):
"""The view to edit an accounting transaction.
Args:
request (HttpRequest): The request.