mirror of
https://github.com/eduardogsilva/wireguard_webadmin.git
synced 2026-02-19 19:26:17 +00:00
9 lines
302 B
Python
9 lines
302 B
Python
|
|
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'),
|
||
|
|
]
|