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
- C Window ... - Represents ranges around a given page.
-
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
-
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 ...