Mercurial > public > sg101
view comments/urls.py @ 1094:110bbc78a482
GCalendar V3 conversion in progress.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 29 May 2016 23:09:23 -0500 |
parents | 5ba2508939f7 |
children |
line wrap: on
line source
""" URLs for the comments application. """ from django.conf.urls import url import django.contrib.contenttypes.views import comments.views urlpatterns = [ url(r'^flag/$', comments.views.flag_comment, name='comments-flag'), url(r'^markdown/$', comments.views.markdown_preview, name='comments-markdown_preview'), url(r'^markdown/v3/$', comments.views.markdown_preview_v3, name='comments-markdown_preview_v3'), url(r'^post/$', comments.views.post_comment, name='comments-post'), url(r'^cr/(\d+)/(\d+)/$', django.contrib.contenttypes.views.shortcut, name='comments-url-redirect'), ]