##// END OF EJS Templates
clean abs code
clean abs code

File last commit:

r274:b4c0ecf56a8d
r315:b3c54f0853ae
Show More
urls.py
13 lines | 728 B | text/x-python | PythonLexer
Juan C. Espinoza
Updating base models and views ...
r6 from django.conf.urls import url
Juan C. Espinoza
Update code for django 1.10, python 3 and latest third party packages, review operation view ...
r172 from apps.jars import views
Juan C. Espinoza
Updating base models and views ...
r6 urlpatterns = (
Juan C. Espinoza
Update code for django 1.10, python 3 and latest third party packages, review operation view ...
r172 url(r'^(?P<id_conf>-?\d+)/$', views.jars_conf, name='url_jars_conf'),
Fiorella Quino
Task #1119: bugs...
r271 url(r'^(?P<id_conf>-?\d+)/edit/$', views.jars_conf_edit, name='url_edit_jars_conf'),
Fiorella Quino
Filter template name combo box and change_filter views...
r269 url(r'^(?P<conf_id>-?\d+)/change_filter/$', views.change_filter, name='url_change_jars_filter'),
url(r'^(?P<conf_id>-?\d+)/change_filter/(?P<filter_id>-?\d+)/$', views.change_filter, name='url_change_jars_filter'),
Juan C. Espinoza
Update code for django 1.10, python 3 and latest third party packages, review operation view ...
r172 url(r'^(?P<conf_id>-?\d+)/import/$', views.import_file, name='url_import_jars_conf'),
url(r'^(?P<conf_id>-?\d+)/read/$', views.read_conf, name='url_read_jars_conf'),
Fiorella Quino
Task #1127: Get Log function has been implemented...
r274 url(r'^(?P<conf_id>-?\d+)/get_log/$', views.get_log, name='url_get_jars_log'),
Juan C. Espinoza
Updating base models and views ...
r6 )