Login

HTML Hex Color Field

Author:
claudelacey
Posted:
May 23, 2009
Language:
Python
Version:
1.0
Score:
2 (after 2 ratings)

A custom form field than validates html hex color fields

 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
import re
from django.forms import fields
from django.forms import ValidationError
from django.utils.encoding import smart_unicode

class HexColorField(fields.Field):
    
    default_error_messages = {
        'hex_error': u'This is an invalid color code. It must be a html hex color code e.g. #000000'
    }

    def clean(self, value):
        
        super(HexColorField, self).clean(value)
        
        if value in fields.EMPTY_VALUES:
            return u''
        
        value = smart_unicode(value)
        value_length = len(value)
        
        if value_length != 7 or not re.match('^\#([a-fA-F0-9]{6}|[a-fA-F0-9]{3})$', value):
            raise ValidationError(self.error_messages['hex_error'])
        
        return value

    def widget_attrs(self, widget):
        if isinstance(widget, (fields.TextInput)):
            return {'maxlength': str(7)}

More like this

  1. Template tag - list punctuation for a list of items by shapiromatron 2 months, 2 weeks ago
  2. JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 2 months, 3 weeks ago
  3. Serializer factory with Django Rest Framework by julio 9 months, 2 weeks ago
  4. Image compression before saving the new model / work with JPG, PNG by Schleidens 10 months, 1 week ago
  5. Help text hyperlinks by sa2812 11 months ago

Comments

ursomniac (on February 12, 2013):

This doesn't seem to work with South. Trying to migrate the model using it throws an error:

TypeError: init() got an unexpected keyword argument 'null'

Any suggestions?

#

ilanouh (on October 6, 2014):

I know it's been more than a year, but I think that when you have this error with South, you need to declare your field with a "max_length=255". I used it for another Field and it worked. For example :

languages = MultiSelectField(choices=settings.LANGUAGES, max_length=255)

Hope this can help someone.

#

Please login first before commenting.