tags:

views:

47

answers:

2

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.

+1  A: 

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

d.m