Removed login_required from annotation detail view + prep work on merge view (context is set for get method + blank template) + Corrected 404 logic for checking kwargs
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)
]