##// END OF EJS Templates
update rc/models.py to last version:...
update rc/models.py to last version: - monitor channel - cgs_status

File last commit:

r338:7377db7c77e8
r418:d19764ba5024 ver_3Julio
Show More
urls.py
9 lines | 293 B | text/x-python | PythonLexer
from django.urls import path
from . import views
urlpatterns = (
path('<int:id_conf>/', views.dds_conf, name='url_dds_conf'),
path('<int:id_conf>/<int:message>/', views.dds_conf, name='url_dds_conf'),
path('<int:id_conf>/edit/', views.dds_conf_edit, name='url_edit_dds_conf'),
)