##// END OF EJS Templates
models are passed as instances to templates (dictionaries are not used anymore)...
models are passed as instances to templates (dictionaries are not used anymore) git-svn-id: http://jro-dev.igp.gob.pe/svn/jro_hard/radarsys/trunk/webapp@37 aa17d016-51d5-4e8b-934c-7b2bbb1bbe71

File last commit:

r19:225e7bf681bc
r22:08de53529b15
Show More
urls.py
9 lines | 421 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
urlpatterns = (
Juan C. Espinoza
Updating base models and views ...
r6 #url(r'^configuration/$', 'apps.cgs.views.configurate_frequencies', name='new_device'),
Miguel Urco
siderbar_devices.html updated...
r17 # url(r'^(?P<id>-?\d+)/$', 'apps.cgs.views.configurate_frequencies', name='new_device'),
url(r'^(?P<id_conf>-?\d+)/$', 'apps.main.views.dev_conf', name='url_cgs_conf'),
Miguel Urco
views name were changed ...
r19 url(r'^(?P<id_conf>-?\d+)/edit/$', 'apps.main.views.dev_conf_edit', name='url_edit_cgs_conf'),
Juan C. Espinoza
Proyecto base en Django (refs #259) ...
r0 )
Fiorella Quino
CGS model, form, view, url and html have been added....
r4