diff --git a/pinaxcon/urls.py b/pinaxcon/urls.py index 679742847dbac9659ee938d4387bd15e30de9bec..87de23ea41c4d50d0e2101ad837f6018b2f57681 100644 --- a/pinaxcon/urls.py +++ b/pinaxcon/urls.py @@ -26,6 +26,13 @@ urlpatterns = [ url(r"^boxes/", include("pinax.boxes.urls")), url(r"^", include("pinax.pages.urls")), + + # Required by registrasion + url(r'^register/', include('registrasion.urls')), + url(r'^nested_admin/', include('nested_admin.urls')), + + # Demo payment gateway and related features + url(r"^register/pinaxcon/", include("pinaxcon.registrasion.urls")), ] urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)