Skip to main content

Adding more structure to JSONFields

Project description

https://badge.fury.io/py/structjsonfield.svg https://travis-ci.org/tleguijt/structjsonfield.svg?branch=master https://codecov.io/gh/tleguijt/structjsonfield/branch/master/graph/badge.svg

Adding more structure to JSONFields

Documentation

The full documentation is at https://structjsonfield.readthedocs.io.

Quickstart

Install Django Structured JSONField:

pip install structjsonfield

Add it to your INSTALLED_APPS:

INSTALLED_APPS = (
    ...
    'structjsonfield',
    ...
)

Use the StructJSONField in your form

from structjsonfield import StructJSONField


ingredients = StructJSONField(
    structure={
        'name': forms.CharField(label=_('Name')),
        'amount': forms.CharField(label=_('Amount')),
        'units': forms.CharField(label=_('Units'))
    })

Prerequisites

  • Make sure you have jQuery loaded in your template

  • Make sure you load the necessary form media (js + css)

Features

  • TODO

Running Tests

Does the code actually work?

source <YOURVIRTUALENV>/bin/activate
(myenv) $ pip install tox
(myenv) $ tox

History

0.1.4 (2017-06-20)

  • Added ability to disable specific columns

  • Added support for BooleanFields (checkboxes) as widget

0.1.3 (2017-06-15)

  • Fixed issue with disabled fields; given value is already JSON instead of a string

0.1.2 (2017-06-14)

  • Localized validation error messages

0.1.1 (2017-05-15)

  • Return unpacked rows as Columns to provide more context to the template

0.1.0 (2017-04-26)

  • First release on PyPI.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page