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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
xmrauctions/bids/urls.py

12 lines
402 B
Python

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'),
]