gitextract_lcedyun1/ ├── .gitignore ├── CONTRIBUTORS.txt ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── docs/ │ ├── index.txt │ ├── install.txt │ └── usage.txt ├── pagination/ │ ├── __init__.py │ ├── locale/ │ │ ├── cs/ │ │ │ └── LC_MESSAGES/ │ │ │ ├── django.mo │ │ │ └── django.po │ │ ├── de/ │ │ │ └── LC_MESSAGES/ │ │ │ ├── django.mo │ │ │ └── django.po │ │ ├── es/ │ │ │ └── LC_MESSAGES/ │ │ │ ├── django.mo │ │ │ └── django.po │ │ ├── fr/ │ │ │ └── LC_MESSAGES/ │ │ │ ├── django.mo │ │ │ └── django.po │ │ ├── pl/ │ │ │ └── LC_MESSAGES/ │ │ │ ├── django.mo │ │ │ └── django.po │ │ ├── pt/ │ │ │ └── LC_MESSAGES/ │ │ │ ├── django.mo │ │ │ └── django.po │ │ └── pt_BR/ │ │ └── LC_MESSAGES/ │ │ ├── django.mo │ │ └── django.po │ ├── middleware.py │ ├── models.py │ ├── paginator.py │ ├── templates/ │ │ └── pagination/ │ │ └── pagination.html │ ├── templatetags/ │ │ ├── __init__.py │ │ └── pagination_tags.py │ └── tests.py ├── setup.py └── tests/ ├── runtests.py └── settings.py