diff options
author | Matthew Lemon <y@yulqen.org> | 2024-09-08 13:59:10 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-09-08 13:59:10 +0100 |
commit | db531eaa027d2abcfcceabfef4b8aa9dc5ca1e5d (patch) | |
tree | 47dc0044d1a50c8ffbe689ab9f09ed3bda296ae8 /config/urls.py | |
parent | 50c7d5b46a9e25390ab4c4ff5dcb944a12df2bef (diff) |
wip: implementing checkout
- also some formatting changes
Diffstat (limited to 'config/urls.py')
-rw-r--r-- | config/urls.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/urls.py b/config/urls.py index 1dc7fcb..5a6eeeb 100644 --- a/config/urls.py +++ b/config/urls.py @@ -8,7 +8,7 @@ from django.urls import path from django.views import defaults as default_views from django.views.generic import TemplateView -#import debug_toolbar +# import debug_toolbar admin.site.site_header = "Blackbird Admin Panel" @@ -27,11 +27,11 @@ urlpatterns = [ path("accounts/", include("allauth.urls")), # Your stuff: custom urls includes go here path("resources/", include("pyblackbird_cc.resources.urls", namespace="resources")), + path("payments/", include("pyblackbird_cc.payments.urls", namespace="payments")), # Media files *static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT), ] - if settings.DEBUG: # This allows the error pages to be debugged during development, just visit # these url in browser to see how these error pages look like. |