added urlpattern for privacy page

pull/1/head
thatandromeda 2011-09-13 14:59:29 -03:00
parent 03bef09c01
commit 8aba6cfb4e
1 changed files with 1 additions and 0 deletions

View File

@ -4,4 +4,5 @@ urlpatterns = patterns(
"regluit.frontend.views", "regluit.frontend.views",
url(r"^$", "home", name="home"), url(r"^$", "home", name="home"),
url(r"^supporter/(?P<supporter_username>.+)/$", "supporter", name="supporter"), url(r"^supporter/(?P<supporter_username>.+)/$", "supporter", name="supporter"),
url(r"^privacy$", "textpage", name="privacy"),
) )