From 4227f86ffc056116acddc18f9c1c7589b7d5aabe Mon Sep 17 00:00:00 2001 From: Klaus-Uwe Mitterer Date: Wed, 14 Apr 2021 07:42:28 +0200 Subject: [PATCH] Fix wrong path for bookings --- partners/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/partners/urls.py b/partners/urls.py index 6f0bf6b..07ff677 100644 --- a/partners/urls.py +++ b/partners/urls.py @@ -14,6 +14,6 @@ urlpatterns = [ path('bidding/', BiddingListView.as_view(), name="bidding"), path('offers/', OffersListView.as_view(), name="offers"), path('dashboard/', PartnerDashboardView.as_view(), name="dashboard"), - path('bidding/', PartnerDashboardView.as_view(), name="bookings"), + path('bookings/', PartnerDashboardView.as_view(), name="bookings"), path('', RedirectView.as_view(url=reverse_lazy("partners:dashboard"))), ] \ No newline at end of file