{ "info": { "author": "Carl Topham", "author_email": "carl@carl-topham.com", "bugtrack_url": null, "classifiers": [ "Environment :: Web Environment", "Framework :: Django", "Framework :: Django :: 1.11", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Topic :: Internet :: WWW/HTTP", "Topic :: Internet :: WWW/HTTP :: Dynamic Content" ], "description": "==========================\nWagtail Paginated Subpages\n==========================\n\nA simple Django Wagtail app to add paginated pages under a root page using\na mixin /template tag approach.\n\nAdds paginated urls under and page where the mixin is used::\n\n /the-original-page/\n /the-original-page/page/1/\n /the-original-page/page/99/\n\nQuick start\n-----------\n\n1. Install \"wagtail-paginated-subpages\" using pip::\n\n pip install wagtail-paginated-subpages\n\n2. Add \"wagtail_paginated_subpages\" to your INSTALLED_APPS setting like this::\n\n INSTALLED_APPS = [\n ...\n 'wagtail_paginated_subpages',\n ]\n\n3. import the mixin and include it before the Page (or other) classes::\n\n from wagtail_paginated_subpages.mixins.pagination import PaginatedMixin\n\n class ContentPage(PaginatedMixin, Page):\n\n pass\n\n4. Use the paginated content in a paginated page template::\n\n