Skip to main content

Simple Image Uploader Widget for Django-Admin

Reason this release was yanked:

error in release system

Project description

django-image-uploader-widget

Introduction

A beautiful image uploader widget for django and django-admin.

Basic Preview

Widget-DarkWidget-Light

Widget-Dark-ImageWidget-Light-Image

Widget Behaviour

Behaviour-DarkBehaviour-Light

Theme Toggle With Django 4.2+

Theme-Toggle

Django-Admin Inline Widget for Multiple Files Handling

Admin-Behaviour-DarkAdmin-Behaviour-Light

Documentation

To understand this package and how to use it you can access the package documentation.

Installing

Install via pip package manager:

pip install django-image-uploader-widget

Add to installed apps, in settings.py:

INSTALLED_APPS = [
    # ...
    'image_uploader_widget',
    # ...
]

Usage

With Admin

# admin.py
from django.contrib import admin
from django.db import models
from image_uploader_widget.widgets import ImageUploaderWidget
from .models import YourModel


@admin.register(YourModel)
class YourModelAdmin(admin.ModelAdmin):
    formfield_overrides = {
        models.ImageField: {'widget': ImageUploaderWidget},
    }

With ModelForm

# forms.py
from django import forms
from image_uploader_widget.widgets import ImageUploaderWidget

class ExampleForm(forms.ModelForm):
    class Meta:
        widgets = {
            'image': ImageUploaderWidget(),
        }
        fields = '__all__'

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-image-uploader-widget-0.4.5.tar.gz (19.7 kB view details)

Uploaded Source

Built Distribution

File details

Details for the file django-image-uploader-widget-0.4.5.tar.gz.

File metadata

File hashes

Hashes for django-image-uploader-widget-0.4.5.tar.gz
Algorithm Hash digest
SHA256 201398ad9ae511e7252c600000bb3443c8172cb8c34a230364cf7e46b76840e1
MD5 b7efaf6b1a3db8c83b5b0420514c91de
BLAKE2b-256 b999d7925745d732d4874ce5f196ede0e66125775402fbbd18336c1265fc16a6

See more details on using hashes here.

File details

Details for the file django_image_uploader_widget-0.4.5-py3-none-any.whl.

File metadata

File hashes

Hashes for django_image_uploader_widget-0.4.5-py3-none-any.whl
Algorithm Hash digest
SHA256 20a7af131958ea7b242dce3721f761ee710c01014d84a826eb0e98729aadd11c
MD5 b8fdd57684da3c37bdabf9bd4dbd0795
BLAKE2b-256 6c3658fdda7e260de969bc202520013827242d382711dd88088bdc06c5ed5d7a

See more details on using hashes here.

Supported by

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