##// END OF EJS Templates
Fix abs template and jars model
Fix abs template and jars model

File last commit:

r172:a641bec15a9b
r321:5a81cccaa8ae
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 )