django-paintstore

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

django-paintstore Ranking & Summary

Advertisement

  • Rating:
  • License:
  • MIT/X Consortium Lic...
  • Price:
  • FREE
  • Publisher Name:
  • Glenn Siegman
  • Publisher web site:
  • https://github.com/gsiegman/

django-paintstore Tags


django-paintstore Description

django-paintstore is a Django app that integrates jQuery ColorPicker with the Django admin.Quickstart1. Install the app with your preferred Python packaging utility, for example: pip install django-paintstore2. 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 = list_editable = Product's homepage


django-paintstore Related Software