Skip to main content

A simple Django app to duplicate model instance in admin.

Project description

=====
Model Duplication
=====

Django admin have `save_as` feature, but that feature have bug with images field, and sometime you want 100% duplication of a model instance with all other related objects and customization, then `save_as` doesn't fit for that purpose.

Quick start
-----------

1. Add "modelduplication" to your INSTALLED_APPS setting like this: ::

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


2. Define `pre_duplicate` and `post_duplicate` to your models to customize duplication process: ::

class Book(models.Model):
def pre_duplicate(self, origin):
"""This method use to modify object before `save` on duplication.
:type origin models.Model
:param origin the origin instance
"""
pass

def post_duplicate(self, origin):
"""This method is called after finishing the duplication.
:type origin models.Model
:param origin the origin instance
"""
pass

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-modelduplication-0.1.1.tar.gz (2.7 kB view hashes)

Uploaded Source

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