mirror of
https://github.com/welton89/RRBEC.git
synced 2026-04-05 21:45:41 +00:00
chore: Delete numerous application modules, templates, static assets, documentation, and build files.
This commit is contained in:
14
clients/urls.py
Normal file
14
clients/urls.py
Normal file
@@ -0,0 +1,14 @@
|
||||
|
||||
from django.urls import path, include
|
||||
from . import views
|
||||
|
||||
urlpatterns = [
|
||||
path('', views.clients, name='clients'),
|
||||
path('createClient', views.createClient, name='createClient'),
|
||||
path('editClient', views.editClient, name='editClient'),
|
||||
path('payDebt', views.payDebt, name='payDebt'),
|
||||
path('viewClient/<int:clientId>', views.viewClient, name='viewClient'),
|
||||
|
||||
|
||||
|
||||
]
|
||||
Reference in New Issue
Block a user