Skip to content

renecarvalho/django-colorfield

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

django-colorfield

Simple colorfield for django (optimized for carlosroberto)

Installation

Instaling django-colorfield:

pip install -e git://github.com/renecarvalho/django-colorfield.git#egg=colorfield

Add colorfield to your INSTALLED_APPS, example:

INSTALLED_APPS = (
    'colorfield',
)

Then in your models, you can use it like this:

from django.db import models
from colorfield.fields import ColorField


class Show(ExtendedModel):
    title = models.CharField(u'Title', max_length=250)
    color = ColorField(default='ffffff')

About

Simple colorfield for django (optimized for grappelli)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 70.0%
  • CSS 20.4%
  • Python 9.6%