You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
402 B
Python
12 lines
402 B
Python
5 years ago
|
from django.urls import path
|
||
|
from . import views
|
||
|
|
||
|
|
||
|
urlpatterns = [
|
||
|
path('', views.list_bids, name='list_bids'),
|
||
|
path('<int:bid_id>/accept/', views.accept_bid, name='accept_bid'),
|
||
|
path('<int:bid_id>/delete/', views.delete_bid, name='delete_bid'),
|
||
|
path('<int:bid_id>/edit/', views.edit_bid, name='edit_bid'),
|
||
|
path('item/<int:item_id>/create/', views.create_bid, name='create_bid'),
|
||
|
]
|