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