diff --git a/biscuit/apps/fibu/urls.py b/biscuit/apps/fibu/urls.py index 3e69546698e4f31db1d670010f23a1f61879dcb8..a6e71761e11db4852ff6daba2fe85bd61cac9e01 100755 --- a/biscuit/apps/fibu/urls.py +++ b/biscuit/apps/fibu/urls.py @@ -5,6 +5,8 @@ from . import views urlpatterns = [ path('', views.index, name='fibu_index'), path('check', views.check, name='booking_check'), + path('check', views.check, name='booking_check1'), + path('check', views.check, name='booking_check2'), # path('make_booking', views.make_booking, name='fibu_make_booking'), # path('edit/<int:id>', views.edit, name='booking_edit'), ] diff --git a/biscuit/apps/fibu/views.py b/biscuit/apps/fibu/views.py index fc3310820f79db3ac4a4078d1519f5e5c176149f..a7e4c3483508de21a8521bd4e7a11511138fa234 100644 --- a/biscuit/apps/fibu/views.py +++ b/biscuit/apps/fibu/views.py @@ -70,3 +70,9 @@ def check(request): booking_list = Booking.objects.filter(status=0).order_by('submission_date') bookings = BookingFilter(request.GET, queryset=booking_list) return render(request, 'fibu/check.html', {'filter': bookings}) + +def booking_check1(): + pass + +def booking_check2(): + pass \ No newline at end of file