Warning, your browser does not support JavaScript and is not capable of displaying the latest web pages such as this one.
Pylons
Latest Version:
0.9.6.2
Home
Docs
Wiki
Trac
Community
FAQ
Install
Pastebin
Search Docs
Index of the
pagination
module
m
webhelpers.pagination
...
-
Pagination for Collections and ORMs
a
find_page
...
C
Paginator
...
-
Tracks paginated sets of data, and supplies common pagination operations
a
current
...
-
Page object currently being displayed
f
__getitem__
...
f
__contains__
...
f
__iter__
...
f
__init__
...
-
Initialize a Paginator with the item count specified.
f
__len__
...
C
Window
...
-
Represents ranges around a given page.
a
padding
...
-
Sets the window's padding (the number of pages on either side of the window page).
a
pages
...
-
Returns a list of Page objects in the current window.
f
__init__
...
-
Creates a new Window object for the given
page
with the specified
padding
.
f
__add__
...
C
Page
...
-
Represents a single page from a paginated set.
a
last
...
-
Boolean indicating if this page is the last.
a
first_item
...
-
The number of the first item in the page.
a
last_item
...
-
The number of the last item in the page.
a
offset
...
-
Offset of the page, useful for database queries.
a
previous
...
-
Previous page if it exists, None otherwise.
a
next
...
-
Next page if it exists, None otherwise.
a
first
...
-
Boolean indiciating if this page is the first.
f
__int__
...
f
__cmp__
...
f
window
...
f
__eq__
...
f
__init__
...
-
Creates a new Page for the given
paginator
with the index
number
.
f
paginate
...
-
Paginate a collection of data
m
links
...
-
Pagination Link Generators
a
html
...
f
pagelist
...
-
PHPbb style Pagination Links
m
orm
...
-
ORM Wrappers
a
orms
...
C
SQLAlchemyLazyTable
...
f
__len__
...
f
__getitem__
...
C
SQLAlchemyLazyMapper
...
f
__len__
...
f
__getitem__
...
C
SQLObjectLazy
...
f
__len__
...
f
__getitem__
...
C
SQLAlchemy04LazySessionMapper
...
f
__len__
...
f
__getitem__
...
C
SQLAlchemy04LazyMapper
...
f
__len__
...
f
__getitem__
...
f
get_wrapper
...
Top