10 lines
263 B
Python
10 lines
263 B
Python
from django.urls import path
|
|
|
|
from .views import ledgers, recharge, summary
|
|
|
|
urlpatterns = [
|
|
path("summary/", summary, name="billing-summary"),
|
|
path("ledgers/", ledgers, name="billing-ledgers"),
|
|
path("recharge/", recharge, name="billing-recharge"),
|
|
]
|