mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-19 12:43:23 +00:00
11 lines
300 B
Python
11 lines
300 B
Python
|
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'),
|
||
|
]
|
||
|
|