Adrian Holovaty wrote:
Disclaimer: It does not yet map all database field types to the
correct form field/widget types, but it's a start.

FWIW: I've been putting a little helper function in my
views.py to conditionally tweak any rough edges ...

   def model2form(pk):
       if not pk:
           return MyForm()
       ## ignoring error checking here for brevity ##
       obj = MyModel.objects.get(pk=pk)
       return MyForm(obj.__dict__)

   ... then passing it to the template ...

   context = {'form': model2form(pk) }
   return render_to_response('myapp/my_form.html', context)

Kudos to Adrian for putting together the newforms
package.  There have been some questions about whether
it's ready for prime-time, but I think if you're just
starting with Django and have some Python coding experience
it probably makes just to jump in and use it.  The code
is easy to comprehend. If you find something that doesn't
quite work the way you expect, it's not too difficult to
work around.

Full disclosure: I'm new to Django and have never worked
with the old forms package.
--
Jeff Bauer
Rubicon, Inc.


--~--~---------~--~----~------------~-------~--~----~
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 unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to