From 4467db8c9d1a0e18cefff6867af170bb6a95f5f4 Mon Sep 17 00:00:00 2001 From: Manel Clos Date: Sun, 26 Apr 2020 16:18:42 +0200 Subject: [PATCH] add testing instructions --- README.md | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 20af636..1f62287 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,6 @@ # Django Smart Selects -[![Jazzband](https://jazzband.co/static/img/badge.svg)](https://jazzband.co/) - -[![Build Status](https://travis-ci.org/jazzband/django-smart-selects.svg?branch=master)](https://travis-ci.org/jazzband/django-smart-selects) - -[![Coverage Status](https://coveralls.io/repos/github/jazzband/django-smart-selects/badge.svg?branch=master)](https://coveralls.io/github/jazzband/django-smart-selects?branch=master) +[![Jazzband](https://jazzband.co/static/img/badge.svg)](https://jazzband.co/) [![Build Status](https://travis-ci.org/jazzband/django-smart-selects.svg?branch=master)](https://travis-ci.org/jazzband/django-smart-selects) [![Coverage Status](https://coveralls.io/repos/github/jazzband/django-smart-selects/badge.svg?branch=master)](https://coveralls.io/github/jazzband/django-smart-selects?branch=master) This package allows you to quickly filter or group "chained" models by adding a custom foreign key or many to many field to your models. This will use an AJAX query to load only the applicable chained objects. @@ -17,6 +13,18 @@ For more information on installation and configuration see the documentation at: https://django-smart-selects.readthedocs.io/ +## Reporting issues / sending PRs + +You can try the test_app example using: + +```shell +python manage.py migrate +python manage.py loaddata test_app/fixtures/* +python manage.py runserver +``` + +Then login with admin/admin at http://127.0.0.1:8000/admin/ + ## TODO