Re: Adding button to admin change form

2009-10-27 Thread Aaron
On Oct 26, 5:06 pm, Mikhail Korobov wrote: > You should override change_form.html template and save it as > > /your_project/templates/admin/your_app/change_form.html > > or > > /your_project/templates/admin/your_app/your_model/change_form.html Thank you. I ended up creating my own tag to repace

Re: Adding button to admin change form

2009-10-26 Thread Mikhail Korobov
You should override change_form.html template and save it as /your_project/templates/admin/your_app/change_form.html or /your_project/templates/admin/your_app/your_model/change_form.html On 26 окт, 21:45, Aaron wrote: > I need to add a button to the admin change form of certain models, > whic

Adding button to admin change form

2009-10-26 Thread Aaron
I need to add a button to the admin change form of certain models, which would be placed among the save buttons. I've tried overriding the template submit_line.html, but I am coming under the impression that this is not possible unless I override the template for my entire project. I need this bu