##// END OF EJS Templates
new structure and views.py (pedestal) update
new structure and views.py (pedestal) update

File last commit:

r366:bdf15dfd5ebe
r366:bdf15dfd5ebe
Show More
urls.py
11 lines | 528 B | text/x-python | PythonLexer
from django.urls import path
from . import views
urlpatterns = (
path('<int:conf_id>/', views.conf, name='url_pedestal_dev_conf'),
path('<int:conf_id>/import/', views.import_file, name='url_import_pedestal_dev_conf'),
path('<int:conf_id>/edit/', views.conf_edit, name='url_edit_pedestal_dev_conf'),
#url(r'^(?P<id_conf>-?\d+)/write/$', 'apps.main.views.dev_conf_write', name='url_write_pedestal_conf'),
#url(r'^(?P<id_conf>-?\d+)/read/$', 'apps.main.views.dev_conf_read', name='url_read_pedestal_conf'),
)