\r
The test suite uses py.test (from http://codespeak.net/py/dist/test.html).\r
\r
+Defining Tables\r
+---------------\r
+\r
+Using Tables\r
+------------\r
+\r
+Create\r
+\r
Tables and Pagination\r
---------------------\r
\r
table = MyTable(queryset)\r
p = Paginator(table.rows, 10) # paginator will need to be able to handle our modelproxy\r
\r
+ or\r
+\r
table = MyTable(queryset)\r
table.pagination = Paginator(10, padding=2)\r
+\r
+ or\r
+\r
table.paginate(DiggPaginator, 10, padding=2)\r
\r
Works exactly like in the Django database API. Order may be specified as\r
\r
TODO\r
----\r
-\r
- - Support table filters\r
- - Support grouping\r
- - Support choices-like data
\ No newline at end of file
+ - Let columns change their default ordering (ascending/descending)\r
+ - Filters\r
+ - Grouping\r
+ - Choices-like data
\ No newline at end of file