view gpp/potd/urls.py @ 1:dbd703f7d63a

Initial import of sg101 stuff from private repository.
author gremmie
date Mon, 06 Apr 2009 02:43:12 +0000
parents
children 7b6540b185d9
line wrap: on
line source
"""
URLs for the POTD application.
"""
from django.conf.urls.defaults import *

urlpatterns = patterns('potd.views',
    url(r'^$', 'view', name='potd-view'),
)