Renamed the views transaction_show() to txn_show(), transaction_edit() to txn_edit(), and transaction_store() to txn_store() in the accounting application.
This commit is contained in:
parent
96eb033fb4
commit
f7c62fcc66
@ -76,15 +76,15 @@ urlpatterns = [
|
||||
path("search",
|
||||
views.search, name="search"),
|
||||
path("transactions/<txn-type:txn_type>/create",
|
||||
views.transaction_edit, name="transactions.create"),
|
||||
views.txn_edit, name="transactions.create"),
|
||||
path("transactions/<txn-type:txn_type>/store",
|
||||
views.transaction_store, name="transactions.store"),
|
||||
views.txn_store, name="transactions.store"),
|
||||
path("transactions/<txn-type:txn_type>/<txn:txn>",
|
||||
views.transaction_show, name="transactions.show"),
|
||||
views.txn_show, name="transactions.show"),
|
||||
path("transactions/<txn-type:txn_type>/<txn:txn>/edit",
|
||||
views.transaction_edit, name="transactions.edit"),
|
||||
views.txn_edit, name="transactions.edit"),
|
||||
path("transactions/<txn-type:txn_type>/<txn:txn>/update",
|
||||
views.transaction_store, name="transactions.update"),
|
||||
views.txn_store, name="transactions.update"),
|
||||
path("transactions/<txn:txn>/delete",
|
||||
mia_core_views.todo, name="transactions.delete"),
|
||||
path("transactions/sort/<date:date>",
|
||||
|
@ -793,7 +793,7 @@ def search(request):
|
||||
|
||||
@require_GET
|
||||
@login_required
|
||||
def transaction_show(request, txn_type, txn):
|
||||
def txn_show(request, txn_type, txn):
|
||||
"""The view of an accounting transaction.
|
||||
|
||||
Args:
|
||||
@ -811,7 +811,7 @@ def transaction_show(request, txn_type, txn):
|
||||
|
||||
@require_GET
|
||||
@login_required
|
||||
def transaction_edit(request, txn_type, txn=None):
|
||||
def txn_edit(request, txn_type, txn=None):
|
||||
"""The view to edit an accounting transaction.
|
||||
|
||||
Args:
|
||||
@ -839,7 +839,7 @@ def transaction_edit(request, txn_type, txn=None):
|
||||
|
||||
@require_POST
|
||||
@login_required
|
||||
def transaction_store(request, txn_type, txn=None):
|
||||
def txn_store(request, txn_type, txn=None):
|
||||
"""The view to store an accounting transaction.
|
||||
|
||||
Args:
|
||||
|
Loading…
Reference in New Issue
Block a user