Tag: django-pagination example

  • Example how to use django-pagination in Django 1.3

    Django-pagination is great module which ease for creating pagination pages. Usually, we make query to get data from database. Then on templates, we iterating the variable that contains data. Because large of data, we want it get paginate. Using default Django pagination will take several codes, eg : views.py: 123456789101112131415161718from django.shortcuts import render_to_response from django.core.paginator […]