14 lines
No EOL
621 B
Python
14 lines
No EOL
621 B
Python
from django.urls import path
|
|
|
|
from .views import PartnerRegistrationView, PartnerProfileView, BiddingListView, OffersListView, EstablishmentsListView
|
|
|
|
app_name = "partners"
|
|
|
|
urlpatterns = [
|
|
path('register/', PartnerRegistrationView.as_view(), name="register"),
|
|
path('profile/', PartnerProfileView.as_view(), name="profile"),
|
|
path('establishments/', EstablishmentsListView.as_view(), name="establishments"),
|
|
path('bidding/<int:id>/', BiddingListView.as_view(), name="bidding"),
|
|
path('bidding/', BiddingListView.as_view(), name="bidding"),
|
|
path('offers/', OffersListView.as_view(), name="offers"),
|
|
] |