src/restapi/urls.py
author durandn
Fri, 22 Jul 2016 16:52:43 +0200
changeset 73 108f05ed98cb
parent 6 37baf9d13f32
permissions -rw-r--r--
started work on merge view + corrected view error

from django.conf.urls import url
from . import views

urlpatterns = [
	url(r'^$', views.index, name='index'),
	url(r'annotation$', views.annotation_list),
	url(r'annotation/(?P<pk>[0-9]+)/$', views.get)
]