Metadata-Version: 2.1
Name: django-user-defined-fields
Version: 0.0.9
Summary: A Django app for user defined fields
Home-page: https://github.com/uptick/django-user-defined-fields
Author: Aidan Lister
Author-email: aidan@uptickhq.com
License: BSD-3-Clause
Description: # django-user-defined-fields
        
        [![PyPI version](https://badge.fury.io/py/django-user-defined-fields.svg)](https://badge.fury.io/py/django-user-defined-fields)
        [![Build Status](https://travis-ci.org/uptick/django-user-defined-fields.svg?branch=master)](https://travis-ci.org/uptick/django-user-defined-fields)
        
        Django Used Defined Fields is a simple way to allow your users to add extra fields to your models, based on JSONField.
        
        
        ## Installation
        
        Standard pip install:
        
        ```bash
        pip install django-user-defined-fields
        ```
        
        
        ## Quickstart
        
        ```python
        from userdefinedfields.models import ExtraFieldsJSONField
        
        
        class Example(models.Model):
          extra_fields = ExtraFieldsJSONField()
        
        ```
        
        ## Tests
        Run tests in example directory with `python manage.py test testapp`
        
        
        # Settings
        ```
        USERDEFINEDFIELDS_INPUT_CLASSES = 'd-none'  # hide the textarea if you're using a frontend solution
        ```
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Description-Content-Type: text/markdown
