gitextract_8g56kzu8/ ├── .coveragerc ├── .github/ │ └── workflows/ │ └── tox.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .pylintrc ├── .readthedocs.yaml ├── .vscode/ │ ├── launch.json │ └── settings.json ├── AUTHORS ├── HACKING ├── INSTALL ├── LICENSE ├── MANIFEST.in ├── Makefile ├── PKG-INFO ├── README.rst ├── doc/ │ ├── Makefile │ ├── _static/ │ │ └── TRACKME │ ├── changelog.rst │ ├── conf.py │ ├── contacts.rst │ ├── contributing.rst │ ├── current_page_number.rst │ ├── customization.rst │ ├── different_first_page.rst │ ├── digg_pagination.rst │ ├── generic_views.rst │ ├── index.rst │ ├── javascript.rst │ ├── lazy_pagination.rst │ ├── multiple_pagination.rst │ ├── requirements.txt │ ├── start.rst │ ├── templatetags_reference.rst │ ├── thanks.rst │ └── twitter_pagination.rst ├── el_pagination/ │ ├── __init__.py │ ├── decorators.py │ ├── exceptions.py │ ├── loaders.py │ ├── locale/ │ │ ├── de/ │ │ │ └── LC_MESSAGES/ │ │ │ ├── django.mo │ │ │ └── django.po │ │ ├── es/ │ │ │ └── LC_MESSAGES/ │ │ │ ├── django.mo │ │ │ └── django.po │ │ ├── fr/ │ │ │ └── LC_MESSAGES/ │ │ │ ├── django.mo │ │ │ └── django.po │ │ ├── it/ │ │ │ └── LC_MESSAGES/ │ │ │ ├── django.mo │ │ │ └── django.po │ │ ├── pt_BR/ │ │ │ └── LC_MESSAGES/ │ │ │ ├── django.mo │ │ │ └── django.po │ │ └── zh_CN/ │ │ └── LC_MESSAGES/ │ │ ├── django.mo │ │ └── django.po │ ├── models.py │ ├── paginators.py │ ├── settings.py │ ├── static/ │ │ └── el-pagination/ │ │ └── js/ │ │ └── el-pagination.js │ ├── templates/ │ │ └── el_pagination/ │ │ ├── current_link.html │ │ ├── next_link.html │ │ ├── page_link.html │ │ ├── previous_link.html │ │ ├── show_more.html │ │ ├── show_more_table.html │ │ └── show_pages.html │ ├── templatetags/ │ │ ├── __init__.py │ │ └── el_pagination_tags.py │ ├── tests/ │ │ ├── __init__.py │ │ ├── integration/ │ │ │ ├── __init__.py │ │ │ ├── test_callbacks.py │ │ │ ├── test_chunks.py │ │ │ ├── test_digg.py │ │ │ ├── test_feed_wrapper.py │ │ │ ├── test_multiple.py │ │ │ ├── test_onscroll.py │ │ │ └── test_twitter.py │ │ ├── templatetags/ │ │ │ ├── __init__.py │ │ │ └── test_el_pagination_tags.py │ │ ├── test_decorators.py │ │ ├── test_loaders.py │ │ ├── test_models.py │ │ ├── test_paginators.py │ │ ├── test_utils.py │ │ └── test_views.py │ ├── utils.py │ └── views.py ├── pyproject.toml ├── release-requirements.txt ├── setup.cfg ├── setup.py ├── tests/ │ ├── __init__.py │ ├── develop.py │ ├── manage.py │ ├── project/ │ │ ├── __init__.py │ │ ├── context_processors.py │ │ ├── models.py │ │ ├── settings.py │ │ ├── static/ │ │ │ └── pagination.css │ │ ├── templates/ │ │ │ ├── 404.html │ │ │ ├── 500.html │ │ │ ├── base.html │ │ │ ├── callbacks/ │ │ │ │ ├── index.html │ │ │ │ └── page.html │ │ │ ├── chunks/ │ │ │ │ ├── index.html │ │ │ │ ├── items_page.html │ │ │ │ └── objects_page.html │ │ │ ├── complete/ │ │ │ │ ├── articles_page.html │ │ │ │ ├── entries_page.html │ │ │ │ ├── index.html │ │ │ │ ├── items_page.html │ │ │ │ ├── objects_page.html │ │ │ │ └── objects_simple_page.html │ │ │ ├── digg/ │ │ │ │ ├── index.html │ │ │ │ ├── page.html │ │ │ │ └── table/ │ │ │ │ ├── index.html │ │ │ │ └── page.html │ │ │ ├── feed_wrapper/ │ │ │ │ ├── index.html │ │ │ │ └── page.html │ │ │ ├── home.html │ │ │ ├── multiple/ │ │ │ │ ├── entries_page.html │ │ │ │ ├── index.html │ │ │ │ ├── items_page.html │ │ │ │ └── objects_page.html │ │ │ ├── onscroll/ │ │ │ │ ├── index.html │ │ │ │ ├── page.html │ │ │ │ └── table/ │ │ │ │ ├── index.html │ │ │ │ └── page.html │ │ │ └── twitter/ │ │ │ ├── index.html │ │ │ ├── page.html │ │ │ └── table/ │ │ │ ├── index.html │ │ │ └── page.html │ │ ├── urls.py │ │ └── views.py │ ├── requirements.pip │ └── with_venv.sh └── tox.ini