Django:更改分页样式

时间:2018-08-16 18:52:56

标签: pagination django-2.0

我正在通过添加paginate_by这样的方式在视图上使用分页:

class ProductView(ListView):
    model = Product
    template_name = "product_table.html"
    paginate_by = PAGE_SIZE

它将生成一个分页元素,该元素在页面上显示如下: enter image description here

我想自定义此分页元素以使其更有用。也许更像这样: enter image description here

如何覆盖默认的分页样式?

0 个答案:

没有答案