annotate gpp/ygroup/urls.py @ 481:9f888dbe61ce
Fixing #230; add a scrollbar to the PM popup dialog if necessary. This wasn't as easy as I thought. Had to wrap the PM text in a div with its styling (max-height and overflow). If I then resized the dialog, I'd get two scrollbars. So for now, made the dialog non-resizable.
author |
Brian Neal <bgneal@gmail.com> |
date |
Fri, 07 Oct 2011 02:11:33 +0000 |
parents |
0c18dfb1da1c |
children |
ddd69a8e07c7 |
rev |
line source |
bgneal@323
|
1 """
|
bgneal@323
|
2 urls.py - URLs for the ygroup application.
|
bgneal@323
|
3
|
bgneal@323
|
4 """
|
bgneal@323
|
5 from django.conf.urls.defaults import *
|
bgneal@323
|
6 from django.views.generic import ListView, DetailView
|
bgneal@323
|
7
|
bgneal@323
|
8 from ygroup.models import Thread, Post
|
bgneal@323
|
9 from ygroup.views import ThreadIndexView, ThreadView
|
bgneal@323
|
10
|
bgneal@323
|
11
|
bgneal@323
|
12 urlpatterns = patterns('',
|
bgneal@323
|
13 url(r'^threads/$',
|
bgneal@323
|
14 ThreadIndexView.as_view(),
|
bgneal@323
|
15 name='ygroup-thread_index'),
|
bgneal@323
|
16 url(r'^thread/(\d+)/$',
|
bgneal@323
|
17 ThreadView.as_view(),
|
bgneal@323
|
18 name='ygroup-thread_view'),
|
bgneal@323
|
19 url(r'^post/(?P<pk>\d+)/$',
|
bgneal@323
|
20 DetailView.as_view(model=Post, context_object_name='post'),
|
bgneal@323
|
21 name='ygroup-post_view'),
|
bgneal@323
|
22 )
|
bgneal@323
|
23
|