Mercurial > public > sg101
diff gpp/core/urls.py @ 142:f6904149a233
Forgot to add this file in r137.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 06 Dec 2009 21:25:00 +0000 |
parents | |
children | ab7830b067b3 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gpp/core/urls.py Sun Dec 06 21:25:00 2009 +0000 @@ -0,0 +1,8 @@ +""" +Urls for the core application. +""" +from django.conf.urls.defaults import * + +urlpatterns = patterns('core.views', + url(r'^markdown_help/$', 'markdown_help', name='core-markdown_help'), +)