simple color field for your models with a nice color-picker in the admin-interface.
Project description
django-colorfield
simple color field for your models with a nice color-picker in the admin-interface.
Installation
- Run
pip install django-colorfield
- Add
colorfield
tosettings.INSTALLED_APPS
- Run
python manage.py collectstatic
- Restart your application server
Usage
Settings
This package doesn't need any setting.
Models
Just add color field(s) to your models like this:
from colorfield.fields import ColorField
from django.db import models
class MyModel(model.Model):
color = ColorField(default='#FF0000')
Admin
The admin will kindly provide a simple color picker for all color fields. :)
Testing
# create python 3.8 virtual environment
virtualenv testing_django_colorfield -p "python3.8" --no-site-packages
# activate virtualenv
cd testing_django_colorfield && . bin/activate
# clone repo
git clone https://github.com/fabiocaccamo/django-colorfield.git src && cd src
# install dev requirements
pip install tox
# run tests
tox
# or
python setup.py test
# or
python manage.py test --settings "tests.settings"
Credits
Originally developed by Jared Forsyth
License
Released under MIT License.
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-colorfield-0.3.0.tar.gz
(27.2 kB
view details)
Built Distribution
File details
Details for the file django-colorfield-0.3.0.tar.gz
.
File metadata
- Download URL: django-colorfield-0.3.0.tar.gz
- Upload date:
- Size: 27.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.6.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 808fd1783be0331dc15f0d4e98d18e3b31257b4837ac89594b94f87170d6c6ce |
|
MD5 | 0daebc876b0318fe7ef20bdb89afbaa9 |
|
BLAKE2b-256 | 6a54f521988c30f1adccb97751d0b1ae308eb9ec2793ff7237463128211cd745 |
File details
Details for the file django_colorfield-0.3.0-py2-none-any.whl
.
File metadata
- Download URL: django_colorfield-0.3.0-py2-none-any.whl
- Upload date:
- Size: 28.6 kB
- Tags: Python 2
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.6.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7bec0c7a8b3b170bf232f78ed23d2545ddc9c43cb2f45704ccdd57b948b29d8c |
|
MD5 | 18728f544bcd6db79affc5ee40276579 |
|
BLAKE2b-256 | ea71864ac9219a8bcde5594e14cd7165ca7cd5d1f1c097d3fe59122414b9faee |