Metadata-Version: 2.1
Name: djform-navigation
Version: 1.0
Summary: Primary key based form navigation to explore next/prev records.
Home-page: https://github.com/humblesami/djform_navigation.git
Author: Sami Akram
Author-email: samiakram@live.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Requires-Dist: Django (>=3)
Requires-Dist: Pillow (>=8)
Provides-Extra: deploy
Requires-Dist: bump2version ; extra == 'deploy'
Requires-Dist: readme-renderer[md] ; extra == 'deploy'
Requires-Dist: git-changelog ; extra == 'deploy'
Provides-Extra: development
Requires-Dist: Django (>=3) ; extra == 'development'
Requires-Dist: Pillow (>=8) ; extra == 'development'
Requires-Dist: bump2version ; extra == 'development'
Requires-Dist: readme-renderer[md] ; extra == 'development'
Requires-Dist: git-changelog ; extra == 'development'

**Insallation**
1. `pip install djform_navigation`
2. Add `form_navigation` in installed apps in `settings.py` of django project
    INSTALLED_APPS = [
        'form_navigation',
        # ...
    ] (at top)


**Description**
It show the preview of every image field in every admin change_form (add/edit) for all models and apps

**Instructions to run the sample usage**
1. `git clone https://github.com/humblesami/djform_navigation.git`
2. `cd djform_navigation/sample_usage`
3. `pip install -r requirements.txt`

*Not required* but if you want to reset the database, you can do this
3.1. `python manage.py initsql.py`


4. `python manage.py runsever`

5. Open following url in your browser and login with given username and password
http://127.0.0.1:8000/admin/login/?next=/admin/login
username
sa
password
123

6. Go to
http://127.0.0.1:8000/admin/form_navigation/model1/add/

7. Add image to check preview

**Make you own pip package**
See https://github.com/humblesami/djform_navigation/blob/master/docs/make_pip.md to make/build/test and upload `your own pip package`


