view gpp/smiley/urls.py @ 19:aa2b41c5212b

First steps at scratching out a home page. Will need to develop some template tags now to fill it out.
author Brian Neal <bgneal@gmail.com>
date Sun, 19 Apr 2009 20:10:00 +0000
parents f408971657b9
children 3ae999b0c53b
line wrap: on
line source
"""
Urls for the Smiley application.
"""

from django.conf.urls.defaults import *

urlpatterns = patterns('smiley.views',
    url(r'^farm/$', 'farm', name='smiley-farm'),
)