annotate ygroup/urls.py @ 1080:db8f5b3204b7

Fix Yahoo Group post view for V3 design.
author Brian Neal <bgneal@gmail.com>
date Sat, 23 Apr 2016 00:06:32 -0500
parents 5d208c3321ce
children
rev   line source
bgneal@323 1 """
bgneal@323 2 urls.py - URLs for the ygroup application.
bgneal@323 3
bgneal@323 4 """
bgneal@1028 5 from django.conf.urls import url
bgneal@323 6
bgneal@1080 7 from ygroup.views import ThreadIndexView, ThreadView, PostView
bgneal@323 8
bgneal@323 9
bgneal@1028 10 urlpatterns = [
bgneal@323 11 url(r'^threads/$',
bgneal@323 12 ThreadIndexView.as_view(),
bgneal@323 13 name='ygroup-thread_index'),
bgneal@323 14 url(r'^thread/(\d+)/$',
bgneal@323 15 ThreadView.as_view(),
bgneal@323 16 name='ygroup-thread_view'),
bgneal@323 17 url(r'^post/(?P<pk>\d+)/$',
bgneal@1080 18 PostView.as_view(),
bgneal@323 19 name='ygroup-post_view'),
bgneal@1028 20 ]