src/hdalab/urls.py
changeset 296 c69dfb9d410e
parent 293 b33caeba7faa
child 297 0a742e5a25aa
--- a/src/hdalab/urls.py	Thu Jul 17 15:39:28 2014 +0200
+++ b/src/hdalab/urls.py	Thu Jul 17 16:47:29 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.renkan import RenkanGetPut
+from hdalab.views.renkan import RenkanGetPut, RenkanCopy
 from hdalab.views.profile import ProfileHome
 
 # Uncomment the next two lines to enable the admin:
@@ -32,6 +32,7 @@
     
     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'),
+    url(r'^renkan/copy/(?P<rk_id>.*)$', RenkanCopy.as_view(), name='renkan_copy'),
     url(r'^profile/$', ProfileHome.as_view(), name='profile_home'),
 
 )