Mercurial > public > sg101
view gpp/ygroup/urls.py @ 370:e9a066db3f54
Adding some try/except around some key points in the code to protect against some IntegrityErrors. We log when these happens but otherwise keep going. Tickets: #160 and #169.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 06 Mar 2011 00:40:50 +0000 |
parents | 0c18dfb1da1c |
children | ddd69a8e07c7 |
line wrap: on
line source
""" urls.py - URLs for the ygroup application. """ from django.conf.urls.defaults import * from django.views.generic import ListView, DetailView from ygroup.models import Thread, Post from ygroup.views import ThreadIndexView, ThreadView urlpatterns = patterns('', url(r'^threads/$', ThreadIndexView.as_view(), name='ygroup-thread_index'), url(r'^thread/(\d+)/$', ThreadView.as_view(), name='ygroup-thread_view'), url(r'^post/(?P<pk>\d+)/$', DetailView.as_view(model=Post, context_object_name='post'), name='ygroup-post_view'), )