OpenSlides/openslides/utils/jsonfield
Emanuel Schuetze abad75c129 A lot of template improvements and translation fixes
- Fixed agenda widget for special slide views (e.g. list of speakers, summary).
- Fixed back to motion(s) link
- Set icon for list of speakers widget.
- Fixed overlay widget layout of form elements.
- Added submenu with other config_pages to version.html.
- Updated completly DE translations, fixed EN strings.
- Coding style: Use correct ugettext and ugettext_lazy strings. Use "as _" for ugettext only.
Updated translation.
- Improved projector template (clock image, fixed facicon, added subtitle for list of speakers)
- Changed permission strings ('oneself'). Added check if group(pk=3) exists.
- Added event name and description to base template. Some minor template layout fixes.
- Use static subtile (no context var). Show last 2 old_speakers for projector.
- Cut old_speakers.
- Projektor template style changes (e.g. overlay list of speakers).
2013-04-24 10:38:03 +02:00
..
__init__.py cleanup 2012-11-24 14:01:21 +01:00
fields.py A lot of template improvements and translation fixes 2013-04-24 10:38:03 +02:00
LICENSE add Licence for django-jsonfield 2012-07-11 09:45:48 +02:00
models.py clean up the config app. Use jsonfield to save the config values. 2012-07-07 14:48:21 +02:00
README clean up the config app. Use jsonfield to save the config values. 2012-07-07 14:48:21 +02:00

https://github.com/bradjasper/django-jsonfield

django-jsonfield is a reusable django field that allows you to store validated JSON in your model.

It silently takes care of serialization. To use, simple add the field to one of your models.

===

from django.db import models
from jsonfield import JSONField

class MyModel(models.Model):
json = JSONField()