Re: templates database access

2008-12-08 Thread maeck
Your user will not have access to your database from the browser, so you cannot do any kind of create, update and deletes from templates directly. It will always have to go through POST on your views. You could do some AJAX to avoid web-page roundtrips, but then again, you will be using views to d

Re: templates database access

2008-12-08 Thread Daniel Roseman
On Dec 8, 10:25 am, Vicky <[EMAIL PROTECTED]> wrote: > Is there any way to insert, retrieve, delete and update tables in a > database from templates itself? Well, retrieving is what you do when you display data, but for the rest the answer is *definitely not omg why would you want to do such a ho