├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.rst ├── django_tables2 ├── __init__.py ├── columns.py ├── config.py ├── models.py ├── rows.py ├── static │ └── django_tables2 │ │ └── themes │ │ └── paleblue │ │ ├── css │ │ └── screen.css │ │ └── img │ │ ├── arrow-active-down.png │ │ ├── arrow-active-up.png │ │ ├── arrow-inactive-down.png │ │ ├── arrow-inactive-up.png │ │ ├── header-bg.gif │ │ └── pagination-bg.gif ├── tables.py ├── templates │ └── django_tables2 │ │ ├── basic_table.html │ │ └── table.html ├── templatetags │ ├── __init__.py │ └── django_tables2.py ├── utils.py └── views.py ├── docs ├── Makefile ├── conf.py ├── index.rst └── make.bat ├── example ├── __init__.py ├── app │ ├── __init__.py │ ├── admin.py │ ├── fixtures │ │ └── initial_data.json │ ├── models.py │ ├── tables.py │ ├── tests.py │ └── views.py ├── manage.py ├── settings.py ├── templates │ └── example.html └── urls.py ├── setup.py └── tests ├── __init__.py ├── columns.py ├── config.py ├── core.py ├── models.py ├── rows.py ├── templates.py ├── testapp ├── __init__.py ├── models.py ├── urls.py └── views.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracle2k/django-tables2/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracle2k/django-tables2/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracle2k/django-tables2/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracle2k/django-tables2/HEAD/README.rst -------------------------------------------------------------------------------- /django_tables2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracle2k/django-tables2/HEAD/django_tables2/__init__.py -------------------------------------------------------------------------------- /django_tables2/columns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracle2k/django-tables2/HEAD/django_tables2/columns.py -------------------------------------------------------------------------------- /django_tables2/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracle2k/django-tables2/HEAD/django_tables2/config.py -------------------------------------------------------------------------------- /django_tables2/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracle2k/django-tables2/HEAD/django_tables2/models.py -------------------------------------------------------------------------------- /django_tables2/rows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracle2k/django-tables2/HEAD/django_tables2/rows.py -------------------------------------------------------------------------------- /django_tables2/static/django_tables2/themes/paleblue/css/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracle2k/django-tables2/HEAD/django_tables2/static/django_tables2/themes/paleblue/css/screen.css -------------------------------------------------------------------------------- /django_tables2/static/django_tables2/themes/paleblue/img/arrow-active-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracle2k/django-tables2/HEAD/django_tables2/static/django_tables2/themes/paleblue/img/arrow-active-down.png -------------------------------------------------------------------------------- /django_tables2/static/django_tables2/themes/paleblue/img/arrow-active-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracle2k/django-tables2/HEAD/django_tables2/static/django_tables2/themes/paleblue/img/arrow-active-up.png -------------------------------------------------------------------------------- /django_tables2/static/django_tables2/themes/paleblue/img/arrow-inactive-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracle2k/django-tables2/HEAD/django_tables2/static/django_tables2/themes/paleblue/img/arrow-inactive-down.png -------------------------------------------------------------------------------- /django_tables2/static/django_tables2/themes/paleblue/img/arrow-inactive-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracle2k/django-tables2/HEAD/django_tables2/static/django_tables2/themes/paleblue/img/arrow-inactive-up.png -------------------------------------------------------------------------------- /django_tables2/static/django_tables2/themes/paleblue/img/header-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracle2k/django-tables2/HEAD/django_tables2/static/django_tables2/themes/paleblue/img/header-bg.gif -------------------------------------------------------------------------------- /django_tables2/static/django_tables2/themes/paleblue/img/pagination-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracle2k/django-tables2/HEAD/django_tables2/static/django_tables2/themes/paleblue/img/pagination-bg.gif -------------------------------------------------------------------------------- /django_tables2/tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracle2k/django-tables2/HEAD/django_tables2/tables.py -------------------------------------------------------------------------------- /django_tables2/templates/django_tables2/basic_table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracle2k/django-tables2/HEAD/django_tables2/templates/django_tables2/basic_table.html -------------------------------------------------------------------------------- /django_tables2/templates/django_tables2/table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracle2k/django-tables2/HEAD/django_tables2/templates/django_tables2/table.html -------------------------------------------------------------------------------- /django_tables2/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_tables2/templatetags/django_tables2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracle2k/django-tables2/HEAD/django_tables2/templatetags/django_tables2.py -------------------------------------------------------------------------------- /django_tables2/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracle2k/django-tables2/HEAD/django_tables2/utils.py -------------------------------------------------------------------------------- /django_tables2/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracle2k/django-tables2/HEAD/django_tables2/views.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracle2k/django-tables2/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracle2k/django-tables2/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracle2k/django-tables2/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracle2k/django-tables2/HEAD/docs/make.bat -------------------------------------------------------------------------------- /example/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/app/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracle2k/django-tables2/HEAD/example/app/admin.py -------------------------------------------------------------------------------- /example/app/fixtures/initial_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracle2k/django-tables2/HEAD/example/app/fixtures/initial_data.json -------------------------------------------------------------------------------- /example/app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracle2k/django-tables2/HEAD/example/app/models.py -------------------------------------------------------------------------------- /example/app/tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracle2k/django-tables2/HEAD/example/app/tables.py -------------------------------------------------------------------------------- /example/app/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracle2k/django-tables2/HEAD/example/app/tests.py -------------------------------------------------------------------------------- /example/app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracle2k/django-tables2/HEAD/example/app/views.py -------------------------------------------------------------------------------- /example/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracle2k/django-tables2/HEAD/example/manage.py -------------------------------------------------------------------------------- /example/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracle2k/django-tables2/HEAD/example/settings.py -------------------------------------------------------------------------------- /example/templates/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracle2k/django-tables2/HEAD/example/templates/example.html -------------------------------------------------------------------------------- /example/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracle2k/django-tables2/HEAD/example/urls.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracle2k/django-tables2/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracle2k/django-tables2/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/columns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracle2k/django-tables2/HEAD/tests/columns.py -------------------------------------------------------------------------------- /tests/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracle2k/django-tables2/HEAD/tests/config.py -------------------------------------------------------------------------------- /tests/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracle2k/django-tables2/HEAD/tests/core.py -------------------------------------------------------------------------------- /tests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracle2k/django-tables2/HEAD/tests/models.py -------------------------------------------------------------------------------- /tests/rows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracle2k/django-tables2/HEAD/tests/rows.py -------------------------------------------------------------------------------- /tests/templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracle2k/django-tables2/HEAD/tests/templates.py -------------------------------------------------------------------------------- /tests/testapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracle2k/django-tables2/HEAD/tests/testapp/models.py -------------------------------------------------------------------------------- /tests/testapp/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracle2k/django-tables2/HEAD/tests/testapp/urls.py -------------------------------------------------------------------------------- /tests/testapp/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracle2k/django-tables2/HEAD/tests/testapp/views.py -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracle2k/django-tables2/HEAD/tests/utils.py --------------------------------------------------------------------------------