Nice to name your constant multiple choice fields in models, this is one way of doing that. Sorry I haven't looked into existing alternatives. But this approach worked for me.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | from collections import namedtuple
from django.db.models import *
def _get_field_choices(named):
"""
Namedtuple expected, return Django field choices
"""
dictionary = named._asdict()
return [(v, k) for (k, v) in dictionary.items()]
def get_named_choices(name, choices):
choices = namedtuple(name, choices)(*range(len(choices)))
return _get_field_choices(choices)
class Photo(Model):
_image_types = {
'COLOUR' : 0,
'BLACKWHITE' : 1,
'MONOCHROME' : 2,
'UNKNOWN' : 9,
}
IMAGE_TYPE = get_named_choices('ImageType', _image_types)
image_type = PositiveSmallIntegerField(
default=0,
choices=get_field_choices(IMAGE_TYPE)
)
"""
usage: myphoto.image_type = Photo.IMAGE_TYPE.BLACKWHITE
"""
|
More like this
- Template tag - list punctuation for a list of items by shapiromatron 10 months, 1 week ago
- JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 10 months, 2 weeks ago
- Serializer factory with Django Rest Framework by julio 1 year, 5 months ago
- Image compression before saving the new model / work with JPG, PNG by Schleidens 1 year, 6 months ago
- Help text hyperlinks by sa2812 1 year, 6 months ago
Comments
CORRECTION (sorry)
def get_named_choices(name, choices): return namedtuple(name, choices)(*range(len(choices)))
#
class Property: def init(self, kwd): for (key, val) in kwd.iteritems(): if isinstance(val, dict): val = Property(val) self.dict[key] = val
#
#
Please login first before commenting.