19 lines
1.0 KiB
Python
19 lines
1.0 KiB
Python
from django.urls import path
|
|
from django.contrib.auth import views as auth_views
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path("", views.home, name="home"),
|
|
path("register/", views.register, name="register"),
|
|
path("login/", auth_views.LoginView.as_view(), name="login"),
|
|
path("logout/", auth_views.LogoutView.as_view(), name="logout"),
|
|
path("dashboard/", views.dashboard, name="dashboard"),
|
|
path("truck/register/", views.truck_register, name="truck_register"),
|
|
path("truck/<int:truck_id>/approve/", views.approve_truck, name="approve_truck"),
|
|
path("truck/<int:truck_id>/suspend/", views.suspend_truck, name="suspend_truck"),
|
|
path("shipment/post/", views.post_shipment, name="post_shipment"),
|
|
path("marketplace/", views.marketplace, name="marketplace"),
|
|
path("shipment/<int:shipment_id>/", views.shipment_detail, name="shipment_detail"),
|
|
path("shipment/<int:shipment_id>/bid/", views.place_bid, name="place_bid"),
|
|
path("bid/<int:bid_id>/accept/", views.accept_bid, name="accept_bid"),
|
|
] |