--- a/src/hdalab/urls.py Mon Jun 30 12:47:35 2014 +0200
+++ b/src/hdalab/urls.py Thu Jul 03 12:47:04 2014 +0200
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
from django.conf.urls import patterns, include, url
from django.views.generic import TemplateView
-#from hdalab.views.ajax import filter
+from hdalab.views.renkan import RenkanGetPut
# Uncomment the next two lines to enable the admin:
# from django.contrib import admin
@@ -27,7 +27,10 @@
url(r'^thesaurus/', TemplateView.as_view(template_name="thesaurus.html"), name='thesaurus'),
url(r'^$', TemplateView.as_view(template_name="index.html"), name='home'),
- url(r'^notice/(?P<hda_id>[\w-]+)$', 'hdalab.views.pages.datasheet', name='notice')
+ url(r'^notice/(?P<hda_id>[\w-]+)$', 'hdalab.views.pages.datasheet', name='notice'),
+
+ url(r'^renkan/edit/$', TemplateView.as_view(template_name="renkan_edit.html"), name='renkan_edit'),
+ url(r'^renkan/getput/$', RenkanGetPut.as_view(), name='renkan_get_put'),
)