what options on ListView will come in handy? What does allow_empty do? What does ordering do? What does paginate_by do? code example
Example: django listview
class YourView(ListView):
model = YourModel
paginate_by = your_pagination_number
context_object_name = 'your_model_in_plural'
template_name = 'your_list.html'