mirror of
https://github.com/ae-utbm/sith.git
synced 2025-07-10 11:59:23 +00:00
Add com app with first parametric texts
This commit is contained in:
10
com/urls.py
Normal file
10
com/urls.py
Normal file
@ -0,0 +1,10 @@
|
||||
from django.conf.urls import url, include
|
||||
|
||||
from com.views import *
|
||||
|
||||
urlpatterns = [
|
||||
url(r'^edit/alert$', AlertMsgEditView.as_view(), name='alert_edit'),
|
||||
url(r'^edit/info$', InfoMsgEditView.as_view(), name='info_edit'),
|
||||
url(r'^edit/index$', IndexEditView.as_view(), name='index_edit'),
|
||||
]
|
||||
|
Reference in New Issue
Block a user