Reverted to paginate by 5 in place_list.

This commit is contained in:
Marcus Scholz 2020-08-20 23:33:33 +02:00
parent 6688536a78
commit 719e75a449

View File

@ -50,7 +50,7 @@ class SignUpView(SuccessMessageMixin, CreateView):
success_message = 'User created.'
class PlaceListView(IsAuthenticated, ListView):
paginate_by = 2
paginate_by = 5
model = Place
template_name = 'place/place_list.html'