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

File last commit:

r172:a641bec15a9b
r315:b3c54f0853ae
Show More
urls.py
8 lines | 239 B | text/x-python | PythonLexer
Juan C. Espinoza
Updating base models and views ...
r6 from django.conf.urls import url
Fiorella Quino
CGS model, form, view, url and html have been added....
r4
Juan C. Espinoza
Update code for django 1.10, python 3 and latest third party packages, review operation view ...
r172 from apps.cgs import views
Fiorella Quino
CGS model, form, view, url and html have been added....
r4 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.cgs_conf, name='url_cgs_conf'),
url(r'^(?P<id_conf>-?\d+)/edit/$', views.cgs_conf_edit, name='url_edit_cgs_conf'),
Juan C. Espinoza
Proyecto base en Django (refs #259) ...
r0 )