Mercurial > public > sg101
view gpp/irc/urls.py @ 579:217a6319278c
For Django 1.4, added the admin password reset feature.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 05 May 2012 14:59:20 -0500 |
parents | ddd69a8e07c7 |
children |
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'), )