Skip to content
Snippets Groups Projects
Commit 1165b891 authored by Frank Poetzsch-Heffter's avatar Frank Poetzsch-Heffter
Browse files

reorganize sidenavbar

parent ef3d629e
No related branches found
No related tags found
No related merge requests found
...@@ -5,6 +5,8 @@ from . import views ...@@ -5,6 +5,8 @@ from . import views
urlpatterns = [ urlpatterns = [
path('', views.index, name='fibu_index'), path('', views.index, name='fibu_index'),
path('check', views.check, name='booking_check'), 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('make_booking', views.make_booking, name='fibu_make_booking'),
# path('edit/<int:id>', views.edit, name='booking_edit'), # path('edit/<int:id>', views.edit, name='booking_edit'),
] ]
...@@ -70,3 +70,9 @@ def check(request): ...@@ -70,3 +70,9 @@ def check(request):
booking_list = Booking.objects.filter(status=0).order_by('submission_date') booking_list = Booking.objects.filter(status=0).order_by('submission_date')
bookings = BookingFilter(request.GET, queryset=booking_list) bookings = BookingFilter(request.GET, queryset=booking_list)
return render(request, 'fibu/check.html', {'filter': bookings}) return render(request, 'fibu/check.html', {'filter': bookings})
def booking_check1():
pass
def booking_check2():
pass
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment