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.
|
from django.views.generic import ListView
|
|
|
|
from booking.models import Booking
|
|
|
|
|
|
class BookingListView(ListView):
|
|
template_name = 'employee/booking-list.html'
|
|
model = Booking
|
|
context_object_name = 'bookings'
|
|
paginate_by = 30 # Number of containers per page
|