from django.urls import path from frontend.views import HomeView from .views import InquiryCreateView, InquiryProcessView, InquiryPaymentView, OfferSelectionView, OfferSelectionTableView, BiddingListView, OfferCreationView app_name = "auction" urlpatterns = [ path('create_inquiry/', InquiryCreateView.as_view(), name="create_inquiry"), path('process_inquiry//', InquiryProcessView.as_view(), name="process_inquiry"), path('create_payment//', InquiryPaymentView.as_view(), name="inquiry_payment"), path('offers//', OfferSelectionView.as_view(), name="offer_selection"), path('offers//table.js', OfferSelectionTableView.as_view(), name="offer_table"), path('bidding//', BiddingListView.as_view(), name="bidding"), path('bidding///', OfferCreationView.as_view(), name="offer_create"), path('bidding/', BiddingListView.as_view(), name="bidding"), ]