├── .coveragerc ├── .gitignore ├── .travis.yml ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── README.rst ├── docs ├── README.rst ├── docs │ ├── changelog.md │ ├── index.md │ ├── installation.md │ └── usage.md └── mkdocs.yml ├── requirements-docs.txt ├── requirements-test.txt ├── runtests.py ├── sample_app ├── .gitignore ├── actors │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ └── actors_list.html │ ├── tests.py │ └── views.py ├── manage.py └── sample_app │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── search_views ├── __init__.py ├── filters.py ├── search.py └── views.py ├── setup.py └── tests ├── __init__.py ├── models.py ├── settings.py ├── templates ├── 404.html └── searchview.html ├── test_filters.py └── test_views.py /.coveragerc: -------------------------------------------------------------------------------- 1 | # .coveragerc 2 | [report] 3 | show_missing = True 4 | 5 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inmagik/django-search-views/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inmagik/django-search-views/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inmagik/django-search-views/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inmagik/django-search-views/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inmagik/django-search-views/HEAD/README.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inmagik/django-search-views/HEAD/README.rst -------------------------------------------------------------------------------- /docs/README.rst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/docs/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inmagik/django-search-views/HEAD/docs/docs/changelog.md -------------------------------------------------------------------------------- /docs/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inmagik/django-search-views/HEAD/docs/docs/index.md -------------------------------------------------------------------------------- /docs/docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inmagik/django-search-views/HEAD/docs/docs/installation.md -------------------------------------------------------------------------------- /docs/docs/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inmagik/django-search-views/HEAD/docs/docs/usage.md -------------------------------------------------------------------------------- /docs/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inmagik/django-search-views/HEAD/docs/mkdocs.yml -------------------------------------------------------------------------------- /requirements-docs.txt: -------------------------------------------------------------------------------- 1 | mkdocs==0.15.3 2 | 3 | -------------------------------------------------------------------------------- /requirements-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inmagik/django-search-views/HEAD/requirements-test.txt -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inmagik/django-search-views/HEAD/runtests.py -------------------------------------------------------------------------------- /sample_app/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | 3 | -------------------------------------------------------------------------------- /sample_app/actors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample_app/actors/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inmagik/django-search-views/HEAD/sample_app/actors/admin.py -------------------------------------------------------------------------------- /sample_app/actors/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inmagik/django-search-views/HEAD/sample_app/actors/apps.py -------------------------------------------------------------------------------- /sample_app/actors/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inmagik/django-search-views/HEAD/sample_app/actors/forms.py -------------------------------------------------------------------------------- /sample_app/actors/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inmagik/django-search-views/HEAD/sample_app/actors/migrations/0001_initial.py -------------------------------------------------------------------------------- /sample_app/actors/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample_app/actors/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inmagik/django-search-views/HEAD/sample_app/actors/models.py -------------------------------------------------------------------------------- /sample_app/actors/templates/actors_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inmagik/django-search-views/HEAD/sample_app/actors/templates/actors_list.html -------------------------------------------------------------------------------- /sample_app/actors/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inmagik/django-search-views/HEAD/sample_app/actors/tests.py -------------------------------------------------------------------------------- /sample_app/actors/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inmagik/django-search-views/HEAD/sample_app/actors/views.py -------------------------------------------------------------------------------- /sample_app/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inmagik/django-search-views/HEAD/sample_app/manage.py -------------------------------------------------------------------------------- /sample_app/sample_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample_app/sample_app/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inmagik/django-search-views/HEAD/sample_app/sample_app/settings.py -------------------------------------------------------------------------------- /sample_app/sample_app/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inmagik/django-search-views/HEAD/sample_app/sample_app/urls.py -------------------------------------------------------------------------------- /sample_app/sample_app/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inmagik/django-search-views/HEAD/sample_app/sample_app/wsgi.py -------------------------------------------------------------------------------- /search_views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /search_views/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inmagik/django-search-views/HEAD/search_views/filters.py -------------------------------------------------------------------------------- /search_views/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inmagik/django-search-views/HEAD/search_views/search.py -------------------------------------------------------------------------------- /search_views/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inmagik/django-search-views/HEAD/search_views/views.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inmagik/django-search-views/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inmagik/django-search-views/HEAD/tests/models.py -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inmagik/django-search-views/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/templates/404.html: -------------------------------------------------------------------------------- 1 | 404 2 | -------------------------------------------------------------------------------- /tests/templates/searchview.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inmagik/django-search-views/HEAD/tests/test_filters.py -------------------------------------------------------------------------------- /tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inmagik/django-search-views/HEAD/tests/test_views.py --------------------------------------------------------------------------------