Skip to main content

A Django app that integrates jQuery ColorPicker with the Django admin.

Project description

django-paintstore is a Django app that integrates jQuery ColorPicker with the Django admin

Quickstart

  1. Install the app with your preferred Python packaging utility, for example:

    pip install django-paintstore
  2. Add the application to the INSTALLED_APPS in settings.py:

    INSTALLED_APPS = (
        # ...
        'paintstore',
    )
  3. Add a ColorPickerField to your model:

    # ...
    from paintstore.fields import ColorPickerField
    
    class ColorfulModel(models.Model):
        title = models.CharField(max_length=25)
        color = ColorPickerField()
  4. Optional: Edit colors directly in your model’s change list admin:

    class ColorfulModelAdmin(admin.ModelAdmin):
        list_display = ["title", "color",]
        list_editable = ["color",]

TODOS

  • Replace text input showing color hex code with a swatch of the color selected

  • Docs (prep to add to Read the Docs)

  • Tests

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-paintstore-0.2.tar.gz (101.1 kB view details)

Uploaded Source

File details

Details for the file django-paintstore-0.2.tar.gz.

File metadata

File hashes

Hashes for django-paintstore-0.2.tar.gz
Algorithm Hash digest
SHA256 8f7326576f0618e4f038d583dbb560a598dda23a759d58f8c16e2e1c367f9d8b
MD5 759458c80d319d1412af759c1a200cfb
BLAKE2b-256 10e8f55c93c043b73e6227ca903f68e0c36317ab15383f9d521faa8d14c76289

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page