Skip to content

mpasternak/django-multiseek

Repository files navigation

django-multiseek

Build Status Coverage Status PyPI version

Graphical query builder for Django. Uses Foundation 6.

Depends on:

  • Django
  • django-autocomplete-light
  • Foundation 6

Supported configurations:

  • Django 3.2
  • Python 3.8, 3.9, 3.10

django-multiseek's purpose is to enable end-user of the web page to build a query form and query the database using multiple parameters.

Launch the demo, then look for a book called "A book with a title" written by John Smith.

To run the demo

test_project demo uses yarn to handle javascript dependencies, so:

mkvirtualenv django-multiseek
pip install -r requirements_dev.txt

cd test_project
export PYTHONPATH=..:$PYTHONPATH
export DJANGO_SETTINGS_MODULE=test_project.settings

yarn
python manage.py collectstatic --noinput -v0

python manage.py migrate
python manage.py initial_data
python manage.py runserver