* Added example project to demonstrate usage.
authorBradley Ayers <bradley.ayers@gmail.com>
Wed, 11 May 2011 21:02:26 +0000 (07:02 +1000)
committerBradley Ayers <bradley.ayers@gmail.com>
Wed, 11 May 2011 21:05:03 +0000 (07:05 +1000)
commit7c82e63873fb122c9a3b2c879d3151a302f93a86
treee0e857d7fe675790d61f8a990d360e2c95ab0f58
parent19f1242f71e90a0fde00a31693695c16411c17c2
* Added example project to demonstrate usage.
* {% render_table %} now raises an exception if a RequestContext 'request' isn't in the template context.
* Added better documentation in the "Slow Start Guide" about pagination and ordering
* Fixed some styling issues with the paleblue theme
* Added instructions on how to build the docs when using a virtualenv
* bumped version to v0.4.1
19 files changed:
README.rst
django_tables/columns.py
django_tables/static/django_tables/themes/paleblue/css/screen.css
django_tables/templatetags/django_tables.py
docs/conf.py
docs/index.rst
example/__init__.py [new file with mode: 0644]
example/app/__init__.py [new file with mode: 0644]
example/app/admin.py [new file with mode: 0644]
example/app/fixtures/initial_data.json [new file with mode: 0644]
example/app/models.py [new file with mode: 0644]
example/app/tables.py [new file with mode: 0644]
example/app/tests.py [new file with mode: 0644]
example/app/views.py [new file with mode: 0644]
example/manage.py [new file with mode: 0644]
example/settings.py [new file with mode: 0644]
example/templates/example.html [new file with mode: 0644]
example/urls.py [new file with mode: 0644]
setup.py