13 lines
589 B
Python
13 lines
589 B
Python
from django.urls import path
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path('', views.accounting_dashboard, name='accounting_dashboard'),
|
|
path('chart-of-accounts/', views.chart_of_accounts, name='chart_of_accounts'),
|
|
path('journal-entries/', views.journal_entries, name='journal_entries'),
|
|
path('ledger/<int:account_id>/', views.account_ledger, name='account_ledger'),
|
|
path('trial-balance/', views.trial_balance, name='trial_balance'),
|
|
path('balance-sheet/', views.balance_sheet, name='balance_sheet'),
|
|
path('profit-loss/', views.profit_loss, name='profit_loss'),
|
|
]
|