I don't work much with form_for_model, but you
could probably do something like this:

IconForm = forms.models.form_for_model(Icon)
if request.method == 'POST':
    form = IconForm(request.POST)

Then perform your own validation, assigning an error
to the field and returning:

    context = {'form': form,
               'error_message':
                   "Please correct the error(s) below"}
    return render_to_response('form.html',
                              context)

--
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