##// END OF EJS Templates
Check the readme.md for the bokeh version notes and requeriments.
Check the readme.md for the bokeh version notes and requeriments.

File last commit:

r338:7377db7c77e8
r344:ada396c7b35b
Show More
urls.py
12 lines | 563 B | text/x-python | PythonLexer
Nueva plantilla, prueba comunicacion y nuevos campos ddsrest
r338 from django.urls import path
Juan C. Espinoza
Updating base models and views ...
r6
Juan C. Espinoza
Update code for django 1.10, python 3 and latest third party packages, review operation view ...
r172 from apps.main import views
Juan C. Espinoza
Updating base models and views ...
r6 urlpatterns = (
Nueva plantilla, prueba comunicacion y nuevos campos ddsrest
r338 path('<int:id_conf>/', views.dev_conf, name='url_usrp_conf'),
path('<int:id_conf>/edit/', views.dev_conf_edit, name='url_edit_usrp_conf'),
path('<int:id_conf>/write/', views.dev_conf_write, name='url_write_usrp_conf'),
path('<int:id_conf>/read/', views.dev_conf_read, name='url_read_usrp_conf'),
path('<int:id_conf>/import/', views.dev_conf_import, name='url_import_usrp_conf'),
path('<int:id_conf>/export/', views.dev_conf_export, name='url_export_usrp_conf'),
Juan C. Espinoza
Updating base models and views ...
r6 )