generated from westfarn/web_django_template
CI / test (pull_request) Successful in 35s
Shoppers can register, save shipping details, and view order history while cards stay on Stripe. EasyPost tracker updates (including numbers from Pirate Ship) and 1–5 star reviews are limited to buyers. The contact form now only asks for email and a message.
20 lines
359 B
Python
20 lines
359 B
Python
from django.contrib.auth import views as auth_views
|
|
from django.urls import path
|
|
|
|
from accounts.views import PortalLoginView
|
|
|
|
app_name = "accounts"
|
|
|
|
urlpatterns = [
|
|
path(
|
|
"login/",
|
|
PortalLoginView.as_view(),
|
|
name="login",
|
|
),
|
|
path(
|
|
"logout/",
|
|
auth_views.LogoutView.as_view(),
|
|
name="logout",
|
|
),
|
|
]
|