2026-02-03 03:17:21 +00:00

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'),
]