2011-08-31 03:46:55 +00:00
|
|
|
from django.conf.urls.defaults import *
|
|
|
|
|
|
|
|
urlpatterns = patterns(
|
|
|
|
"regluit.frontend.views",
|
|
|
|
url(r"^$", "home", name="home"),
|
2011-09-12 15:23:33 +00:00
|
|
|
url(r"^contributor/(?P<contributor_username>.+)/$", "contributor", name="contributor"),
|
2011-08-31 03:46:55 +00:00
|
|
|
)
|