37733-vm/core/urls.py
Flatlogic Bot 5976b14df7 dem5
2026-01-23 10:23:21 +00:00

18 lines
947 B
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("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"),
]