First push

This commit is contained in:
Jack
2023-09-27 14:42:25 +01:00
parent 95468bd21a
commit 0126ff3a1d
44 changed files with 2965 additions and 0 deletions

12
ACC/cfgs/urls.py Normal file
View File

@@ -0,0 +1,12 @@
from django.urls import path, re_path
from . import views
urlpatterns = [
path(r'', views.confSelect, name='confSelect'),
path(r'delete', views.confDelete, name='confDelete'),
path(r'create', views.confCreate, name='confCreate'),
path(r'rename', views.confRename, name='confRename'),
path(r'clone', views.confClone, name='confClone'),
re_path(r'^([^/]+)/?(.*)', views.formForKey, name='formForKey'),
]