![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
An extension to the Django web framework that provides database and form color fields
############### django-colorful ###############
An extension to the Django web framework that provides a database and form field to accept and store colors in the RGB format.
.. image:: https://travis-ci.org/charettes/django-colorful.svg?branch=master :target: https://travis-ci.org/charettes/django-colorful
.. image:: https://coveralls.io/repos/charettes/django-colorful/badge.svg?branch=master&service=github :target: https://coveralls.io/github/charettes/django-colorful?branch=master
Installation
pip install django-colorful
Make sure 'colorful'
is in your INSTALLED_APPS
:
::
INSTALLED_APPS.append('colorful')
Usage
In order to use a color field you just have to add it to your model definition:
::
from django.db import models
from colorful.fields import RGBColorField
class Tag(models.Model):
color = RGBColorField()
The RGBColorField
class also accepts a color
keyword argument which can
be set to a list of colors that should be visible as preset color palette:
::
color = RGBColorField(colors=['#FF0000', '#00FF00', '#0000FF'])
The ColorFieldWidget
should take care of providing a JavaScript based shim
on browsers that don't support the HTML5 color input.
.. note::
To enable HTML5 color input with Django Grappelli
_ ensure that
GRAPPELLI_CLEAN_INPUT_TYPES
is set to False
in your settings file.
.. _Django Grappelli: https://github.com/sehmaschine/django-grappelli
FAQs
An extension to the Django web framework that provides database and form color fields
We found that django-colorful demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.