src/restapi/urls.py
author Harris Baptiste <harris.baptiste@iri.centrepompidou.fr>
Tue, 28 Jun 2016 18:25:26 +0200
changeset 39 cd1fab6934a9
parent 6 37baf9d13f32
permissions -rw-r--r--
new js folder structure

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)
]