annotate ygroup/urls.py @ 1096:d9cd3180c12c

More GCalendar V3 conversion in progress. Built a brand new post editor. It is hardcoded into GCalendar right now. We will make it more general in the future.
author Brian Neal <bgneal@gmail.com>
date Tue, 14 Jun 2016 21:16:09 -0500
parents db8f5b3204b7
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 ]