├── .gitignore ├── CHANGELOG.rst ├── LICENSE ├── MANIFEST.in ├── README.rst ├── datatables_view ├── __init__.py ├── app_settings.py ├── apps.py ├── columns.py ├── exceptions.py ├── filters.py ├── static │ └── datatables_view │ │ ├── css │ │ └── style.css │ │ ├── images │ │ ├── details_close.png │ │ └── details_open.png │ │ └── js │ │ └── utils.js ├── templates │ ├── base.html │ └── datatables_view │ │ ├── datatable.html │ │ └── row_tools.html ├── templatetags │ ├── __init__.py │ └── datatables_view_tags.py ├── tests │ ├── __init__.py │ ├── test_autofilter.py │ ├── test_choices_filters.py │ ├── test_columndefs.py │ ├── test_datatables_qs.py │ └── test_date_filters.py ├── utils.py └── views.py ├── requirements_test.txt ├── runtests.py ├── screenshots ├── 001.png ├── 002.png ├── 003.png ├── 004a.png ├── 004b.png ├── 005.png ├── 006.png ├── 007.png ├── 008.png ├── 009.png ├── 010.png ├── clipping_results.png ├── column_filtering.png └── table_row_id.png ├── setup.cfg ├── setup.py └── tests ├── __init__.py ├── settings.py ├── test_models.py └── urls.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-datatables-view/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-datatables-view/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-datatables-view/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-datatables-view/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-datatables-view/HEAD/README.rst -------------------------------------------------------------------------------- /datatables_view/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-datatables-view/HEAD/datatables_view/__init__.py -------------------------------------------------------------------------------- /datatables_view/app_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-datatables-view/HEAD/datatables_view/app_settings.py -------------------------------------------------------------------------------- /datatables_view/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-datatables-view/HEAD/datatables_view/apps.py -------------------------------------------------------------------------------- /datatables_view/columns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-datatables-view/HEAD/datatables_view/columns.py -------------------------------------------------------------------------------- /datatables_view/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-datatables-view/HEAD/datatables_view/exceptions.py -------------------------------------------------------------------------------- /datatables_view/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-datatables-view/HEAD/datatables_view/filters.py -------------------------------------------------------------------------------- /datatables_view/static/datatables_view/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-datatables-view/HEAD/datatables_view/static/datatables_view/css/style.css -------------------------------------------------------------------------------- /datatables_view/static/datatables_view/images/details_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-datatables-view/HEAD/datatables_view/static/datatables_view/images/details_close.png -------------------------------------------------------------------------------- /datatables_view/static/datatables_view/images/details_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-datatables-view/HEAD/datatables_view/static/datatables_view/images/details_open.png -------------------------------------------------------------------------------- /datatables_view/static/datatables_view/js/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-datatables-view/HEAD/datatables_view/static/datatables_view/js/utils.js -------------------------------------------------------------------------------- /datatables_view/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-datatables-view/HEAD/datatables_view/templates/base.html -------------------------------------------------------------------------------- /datatables_view/templates/datatables_view/datatable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-datatables-view/HEAD/datatables_view/templates/datatables_view/datatable.html -------------------------------------------------------------------------------- /datatables_view/templates/datatables_view/row_tools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-datatables-view/HEAD/datatables_view/templates/datatables_view/row_tools.html -------------------------------------------------------------------------------- /datatables_view/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /datatables_view/templatetags/datatables_view_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-datatables-view/HEAD/datatables_view/templatetags/datatables_view_tags.py -------------------------------------------------------------------------------- /datatables_view/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /datatables_view/tests/test_autofilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-datatables-view/HEAD/datatables_view/tests/test_autofilter.py -------------------------------------------------------------------------------- /datatables_view/tests/test_choices_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-datatables-view/HEAD/datatables_view/tests/test_choices_filters.py -------------------------------------------------------------------------------- /datatables_view/tests/test_columndefs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-datatables-view/HEAD/datatables_view/tests/test_columndefs.py -------------------------------------------------------------------------------- /datatables_view/tests/test_datatables_qs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-datatables-view/HEAD/datatables_view/tests/test_datatables_qs.py -------------------------------------------------------------------------------- /datatables_view/tests/test_date_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-datatables-view/HEAD/datatables_view/tests/test_date_filters.py -------------------------------------------------------------------------------- /datatables_view/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-datatables-view/HEAD/datatables_view/utils.py -------------------------------------------------------------------------------- /datatables_view/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-datatables-view/HEAD/datatables_view/views.py -------------------------------------------------------------------------------- /requirements_test.txt: -------------------------------------------------------------------------------- 1 | django 2 | factory-boy==2.12.0 3 | -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-datatables-view/HEAD/runtests.py -------------------------------------------------------------------------------- /screenshots/001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-datatables-view/HEAD/screenshots/001.png -------------------------------------------------------------------------------- /screenshots/002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-datatables-view/HEAD/screenshots/002.png -------------------------------------------------------------------------------- /screenshots/003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-datatables-view/HEAD/screenshots/003.png -------------------------------------------------------------------------------- /screenshots/004a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-datatables-view/HEAD/screenshots/004a.png -------------------------------------------------------------------------------- /screenshots/004b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-datatables-view/HEAD/screenshots/004b.png -------------------------------------------------------------------------------- /screenshots/005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-datatables-view/HEAD/screenshots/005.png -------------------------------------------------------------------------------- /screenshots/006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-datatables-view/HEAD/screenshots/006.png -------------------------------------------------------------------------------- /screenshots/007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-datatables-view/HEAD/screenshots/007.png -------------------------------------------------------------------------------- /screenshots/008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-datatables-view/HEAD/screenshots/008.png -------------------------------------------------------------------------------- /screenshots/009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-datatables-view/HEAD/screenshots/009.png -------------------------------------------------------------------------------- /screenshots/010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-datatables-view/HEAD/screenshots/010.png -------------------------------------------------------------------------------- /screenshots/clipping_results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-datatables-view/HEAD/screenshots/clipping_results.png -------------------------------------------------------------------------------- /screenshots/column_filtering.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-datatables-view/HEAD/screenshots/column_filtering.png -------------------------------------------------------------------------------- /screenshots/table_row_id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-datatables-view/HEAD/screenshots/table_row_id.png -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-datatables-view/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-datatables-view/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-datatables-view/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-datatables-view/HEAD/tests/test_models.py -------------------------------------------------------------------------------- /tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-datatables-view/HEAD/tests/urls.py --------------------------------------------------------------------------------