Re: dynamic templates for form fields

2006-05-16 Thread Alexandre CONRAD
> Scaffold Script maybe useful to you: > http://code.djangoproject.com/wiki/ScaffoldScript At a first glance, this pretty much looks like what I need. I'll try it out. > anyway I suggest looking at generic views, they make append\update easy. > I found this tutorial useful: > http://www.postneo.

Re: dynamic templates for form fields

2006-05-16 Thread viestards
Hi! Scaffold Script maybe useful to you: http://code.djangoproject.com/wiki/ScaffoldScript anyway I suggest looking at generic views, they make append\update easy. I found this tutorial useful: http://www.postneo.com/2005/08/17/django-generic-views-crud On 5/15/06, Alexandre CONRAD <[EMAIL PR

Re: dynamic templates for form fields

2006-05-15 Thread Malcolm Tredinnick
On Mon, 2006-05-15 at 16:59 +0200, Alexandre CONRAD wrote: > Hello, > > I've already talked about it in the IRC channel, but I'm posting here to > make sure... > > I have a model Client like so: > > class Client(models.Model): > name = models.CharField(maxlength=30, core=True) > cont