Mercurial > public > sg101
view irc/urls.py @ 604:cebfaa233462
Show non-active status on view profile page. Bitbucket issue #14.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Mon, 23 Jul 2012 19:51:11 -0500 |
parents | ee87ea74d46b |
children | 5ba2508939f7 |
line wrap: on
line source
"""urls for the IRC application""" from django.conf.urls import patterns, url urlpatterns = patterns('irc.views', url(r'^$', 'view', name='irc-main'), )