Mercurial > public > sg101
view gpp/core/urls.py @ 147:152d77265da6
Implement #38: add function to mark user as a spammer. Display only active members on member list. Display login form as table (not sure why wasn't doing this before).
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 13 Dec 2009 08:11:16 +0000 |
parents | f6904149a233 |
children | ab7830b067b3 |
line wrap: on
line source
""" 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'), )