##// END OF EJS Templates
Fix RC plots bug
Fix RC plots bug

File last commit:

r172:a641bec15a9b
r332:9bb45c0e1ac7
Show More
urls.py
8 lines | 239 B | text/x-python | PythonLexer
from django.conf.urls import url
from apps.cgs import views
urlpatterns = (
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'),
)