2011-08-31 03:46:55 +00:00
|
|
|
from django.conf.urls.defaults import *
|
2011-09-29 01:54:50 +00:00
|
|
|
from django.views.generic.simple import direct_to_template
|
2011-09-29 06:23:50 +00:00
|
|
|
from django.views.generic.base import TemplateView
|
2011-08-31 03:46:55 +00:00
|
|
|
|
|
|
|
urlpatterns = patterns(
|
|
|
|
"regluit.frontend.views",
|
|
|
|
url(r"^$", "home", name="home"),
|
2011-09-12 18:20:36 +00:00
|
|
|
url(r"^supporter/(?P<supporter_username>.+)/$", "supporter", name="supporter"),
|
2011-09-29 01:36:47 +00:00
|
|
|
url(r"^search/$", "search", name="search"),
|
2011-09-29 06:23:50 +00:00
|
|
|
url(r"^privacy/$", TemplateView.as_view(template_name="privacy.html"),
|
2011-09-29 01:54:50 +00:00
|
|
|
name="privacy"),
|
2011-10-03 16:51:30 +00:00
|
|
|
url(r"^rightsholders/$", TemplateView.as_view(template_name="rhtools.html"),
|
|
|
|
name="rightsholders"),
|
2011-09-29 06:23:50 +00:00
|
|
|
url(r"^wishlist/$", "wishlist", name="wishlist"),
|
2011-08-31 03:46:55 +00:00
|
|
|
)
|