Mercurial > public > sg101
view gpp/irc/urls.py @ 374:dd673fae508d
Fixing #156. Making it possible to goto the first unread post in a thread. Made the 'New' icon a link; when displayed on a topic, takes you to the first unread post.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Mon, 07 Mar 2011 01:22:49 +0000 |
parents | dbd703f7d63a |
children | ddd69a8e07c7 |
line wrap: on
line source
"""urls for the IRC application""" from django.conf.urls.defaults import * urlpatterns = patterns('irc.views', url(r'^$', 'view', name='irc-main'), )