src/restapi/urls.py
author durandn
Wed, 22 Jun 2016 17:53:40 +0200
changeset 30 7ff344b4bf6d
parent 6 37baf9d13f32
permissions -rw-r--r--
functionality: creation of new annotation from scratch

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