Skip to main content

A django ImageField that generates it's upload_to value from the model instance method get_upload_to.

Project description

Dynamic Upload Image Field

Description

A django ImageField that generates it's upload_to value from the model instance method get_upload_to.

Installation

pip install dynamic-upload-image-field

or

pipenv install dynamic-upload-image-field

Usage

from django.db import models
from dynamic_upload_image_field.fields import DynamicUploadImageField

class ExampleModel(models.Model):
    name = models.CharField(max_length=56)
    image = DynamicUploadImageField()

    def get_upload_to(self, field_name):
        class_name = self.__class__.__name__.lower()
        instance_name = self.name
        return "{}/{}".format(class_name, instance_name)

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

dynamic_upload_image_field-0.1.1.tar.gz (5.9 kB view hashes)

Uploaded Source

Built Distribution

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