Re: effective adding records in Django site admin

2011-10-05 Thread shacker
If you want the ability to make copies of multiple records at once, or just want the "copy" option to appear at the top of the object list instead of having to click through into each record, it's pretty easy to set up an Admin Action. Here's one I use in a system that lets staffers duplicate C

Re: effective adding records in Django site admin

2011-10-05 Thread veva...@yandex.ru
Thank You very much! Tell me please what directory is to be used to place such extensions On 4 окт, 12:02, Ilian Iliev wrote: > Hi, > > you can always create custom admin page for your models by extending > the default admin. > > -- > eng. Ilian Iliev > Web Software Developer > > Mobile: +359 88

Re: effective adding records in Django site admin

2011-10-05 Thread veva...@yandex.ru
Thank You very much! Adding option "save_as = True" to ModelAdmin subclass is exactly what I need. On 4 окт, 13:01, Thomas Orozco wrote: > Regarding your first question, the admin save_as field does exactly this. > Le 4 oct. 2011 07:01, "veva...@yandex.ru" a écrit : -- You received this messag

Re: effective adding records in Django site admin

2011-10-04 Thread Thomas Orozco
Regarding your first question, the admin save_as field does exactly this. Le 4 oct. 2011 07:01, "veva...@yandex.ru" a écrit : -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com. To

Re: effective adding records in Django site admin

2011-10-04 Thread Ilian Iliev
Hi, you can always create custom admin page for your models by extending the default admin. -- eng. Ilian Iliev Web Software Developer Mobile: +359 88 66 08 400 Website: http://ilian.i-n-i.org On Tue, Oct 4, 2011 at 8:01 AM, veva...@yandex.ru wrote: > Good morning! > Could you tell me, is