annotate ygroup/urls.py @ 1132:1407af5472e4
Add our own table stack.
Foundation's table.stack only shows the first th in a thead. Added my own
version that shows all of them.
Updated templates to use new class.
author |
Brian Neal <bgneal@gmail.com> |
date |
Wed, 28 Sep 2016 20:25:29 -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 ]
|