src/restapi/urls.py
author durandn
Fri, 01 Jul 2016 17:40:03 +0200
changeset 54 147c8a8b66b6
parent 6 37baf9d13f32
permissions -rw-r--r--
streamlined templates for easy navigation and missing info + handled fr.dbpedia tags

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