##// END OF EJS Templates
Improve abs pattern views, templates and plots....
Improve abs pattern views, templates and plots. git-svn-id: http://jro-dev.igp.gob.pe/svn/jro_hard/radarsys/trunk/webapp@203 aa17d016-51d5-4e8b-934c-7b2bbb1bbe71

File last commit:

r172:a641bec15a9b
r180:d4783015f56a
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 )