mirror of
https://github.com/eduardogsilva/wireguard_webadmin.git
synced 2026-02-19 19:26:17 +00:00
Refactor URL routing: break main urls.py into app-specific includes
This commit is contained in:
8
routing_templates/urls.py
Normal file
8
routing_templates/urls.py
Normal file
@@ -0,0 +1,8 @@
|
||||
from django.urls import path
|
||||
|
||||
from routing_templates.views import view_manage_routing_template, view_routing_template_list
|
||||
|
||||
urlpatterns = [
|
||||
path('list/', view_routing_template_list, name='routing_template_list'),
|
||||
path('manage/', view_manage_routing_template, name='manage_routing_template'),
|
||||
]
|
||||
Reference in New Issue
Block a user