streamlined comment system, replicated post_comment view so form errors redirect on the annotation page and not on a preview page + added revision detail view and links for specific revisions from the 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)
]