Template
Add shopper accounts, reviews, tracking, and seed_demo (#9)
Closes #9. Shop-gated buyer accounts, purchase reviews, Stripe customer ids, shipment tracking, slim public contact form, and a template-neutral seed_demo command.
This commit is contained in:
@@ -8,6 +8,17 @@ urlpatterns = [
|
||||
path("", views.shipment_list, name="shipment_list"),
|
||||
path("new/", views.shipment_create, name="shipment_create"),
|
||||
path("export/pirate-ship.csv", views.pirate_ship_export, name="pirate_ship_export"),
|
||||
path("webhooks/easypost/", views.easypost_webhook, name="easypost_webhook"),
|
||||
path("<uuid:pk>/", views.shipment_detail, name="shipment_detail"),
|
||||
path("<uuid:pk>/buy/", views.shipment_buy, name="shipment_buy"),
|
||||
path(
|
||||
"<uuid:pk>/tracking/",
|
||||
views.shipment_attach_tracking,
|
||||
name="shipment_attach_tracking",
|
||||
),
|
||||
path(
|
||||
"<uuid:pk>/tracking/refresh/",
|
||||
views.shipment_refresh_tracking,
|
||||
name="shipment_refresh_tracking",
|
||||
),
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user