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.2.2.tar.gz
(27.2 kB
view details)
Built Distribution
File details
Details for the file django-colorfield-0.2.2.tar.gz
.
File metadata
- Download URL: django-colorfield-0.2.2.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 | 49cfce71365de88130e65ced8f2c5c4826b31e9ab0c5f0e721ff13a830b5be76 |
|
MD5 | 0e8614cf5a112be44172385c366e1581 |
|
BLAKE2b-256 | d8f2ffdd249a3c44dc23bd5c9881732f8acf991aa51d4f8d557fe9fa30cad688 |
File details
Details for the file django_colorfield-0.2.2-py2-none-any.whl
.
File metadata
- Download URL: django_colorfield-0.2.2-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 | ecb8af68f35028e35f973ddb687c2dcae86d028c6da1b72580c0d3fae915d3b7 |
|
MD5 | 4066cb491842453c3d30ba9a3abc16a1 |
|
BLAKE2b-256 | 6f7f8b2dd500ea599af57eb805646c7840fd463af6ef0017555c8f51ce12b2bb |