JourneyJoker/auction/urls.py

18 lines
966 B
Python
Raw Permalink Normal View History

from django.urls import path
from frontend.views import HomeView
2021-04-19 10:51:50 +00:00
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/<slug:uuid>/', InquiryProcessView.as_view(), name="process_inquiry"),
path('create_payment/<slug:uuid>/', InquiryPaymentView.as_view(), name="inquiry_payment"),
path('offers/<slug:uuid>/', OfferSelectionView.as_view(), name="offer_selection"),
2021-04-15 09:11:16 +00:00
path('offers/<slug:uuid>/table.js', OfferSelectionTableView.as_view(), name="offer_table"),
2021-04-18 06:12:15 +00:00
path('bidding/<int:id>/', BiddingListView.as_view(), name="bidding"),
2021-04-19 10:51:50 +00:00
path('bidding/<int:establishment>/<slug:inquiry>/', OfferCreationView.as_view(), name="offer_create"),
2021-04-18 06:12:15 +00:00
path('bidding/', BiddingListView.as_view(), name="bidding"),
]