Pagination for Django using Framework CSS Bootstrap 4.
Rename page_obj if you are not inheriting from ListView.
you must add bootstrap 4 to head of your HTML document:
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
and you should add the scripts before closing the tag note that you should not change the order of the scripts:
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" ></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" ></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" ></script>