##// 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 | 511 B | text/x-python | PythonLexer
from django.urls import path
from . import views
urlpatterns = (
path('<int:conf_id>/', views.conf, name='url_usrp_rx_conf'),
path('<int:conf_id>/import/', views.import_file, name='url_import_usrp_rx_conf'),
path('<int:conf_id>/edit/', views.conf_edit, name='url_edit_usrp_rx_conf'),
#url(r'^(?P<id_conf>-?\d+)/write/$', 'apps.main.views.dev_conf_write', name='url_write_usrp_rx_conf'),
#url(r'^(?P<id_conf>-?\d+)/read/$', 'apps.main.views.dev_conf_read', name='url_read_usrp_rx_conf'),
)