bobsr
bobsr

Reputation: 3955

Django duplicate entry

How would you duplicate a data entry in Django/

The model has data in it. What would be the best way to save an entire model entry into new record and update id to new one.

Upvotes: 2

Views: 2007

Answers (2)

dmedvinsky
dmedvinsky

Reputation: 8346

The first page in search results, seems to do the thing you need: http://djangosnippets.org/snippets/1040/

Upvotes: 2

Related Questions