Color fields for Django models and forms using HTML5 native color type input elements
Project description
Color fields for forms and models using HTML5’s native input element of type color.
Quickstart
Install django-colorinput and add it to your INSTALLED_APPS:
INSTALLED_APPS = (
…
'colorinput.apps.ColorInputConfig',
…
)
Now you can use ColorField in your models:
from django.db import models
from colorinput.models import ColorField
class MyModel(models.Model):
…
color = ColorField(default="d0d0d0")
…
In forms, the color field will be displayed using HTML5’s native color type input element. In your own templates, you could use the value stored in the field like this:
<span style="color: #{{ object.color }}">
… or however you want, really. Just keep in mind that the value is stored as RGB in triple HEX format without the leading “#” (hash symbol).
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
django-colorinput-0.2.tar.gz
(13.9 kB
view hashes)
Built Distribution
Close
Hashes for django_colorinput-0.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | b9b1dacedda44f556365cfcdd618d80049498cfdcf41d37bd15543ba1d1b973e |
|
MD5 | 97259a33d2b5de8c9a73653a7b43bd1e |
|
BLAKE2b-256 | be617e4558e4772fbe10a79283e2f089f457e9dc41cf5d1471ddf0ea167fcd10 |