Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/denvaar/django-fancy-feast
Additional form fields for Django
https://github.com/denvaar/django-fancy-feast
django forms web-app
Last synced: 25 days ago
JSON representation
Additional form fields for Django
- Host: GitHub
- URL: https://github.com/denvaar/django-fancy-feast
- Owner: denvaar
- Created: 2016-08-05T07:05:07.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-01-16T04:39:42.000Z (almost 8 years ago)
- Last Synced: 2024-10-01T06:21:26.984Z (about 1 month ago)
- Topics: django, forms, web-app
- Language: Python
- Homepage:
- Size: 47.9 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.rst
Awesome Lists containing this project
README
==================
django-fancy-feast
==================A collection of additional form fields for Django.
- `DataModelChoiceField `_
- `GroupedModelChoiceField `_
- `GroupedModelMultiChoiceField `_
- `TagField `_Requirements
------------
- python3
- django 1.8 or higherQuick Start
-----------1. Run ``pip install django-fancy-feast``
2. Add 'fancy_feast' to your INSTALLED_APPS setting::
INSTALLED_APPS = [
# ...
'fancy_feast',
]