src/restapi/urls.py
author durandn
Wed, 03 Aug 2016 15:47:03 +0200
changeset 97 f747c112e8f4
parent 6 37baf9d13f32
permissions -rw-r--r--
Started work on notification and user homepage + method for a comment to find back its page in his annotation's comments

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