Mercurial > public > sg101
changeset 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 | 861f7d5f1b23 |
children | 1ed461fd2030 |
files | gpp/core/urls.py |
diffstat | 1 files changed, 8 insertions(+), 0 deletions(-) [+] |
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'), +)