Hi John,
> I am not receiving errors on my web page for a certain form.
> When set it up using the shell I get form.is_valid() to False and the
> I try form.errors
> This prints out {}
> Has anyone had this happen before and what could it mean?
It could be that the errors are not on a particular field but on the
overall form (i.e. the form's clean() method is raising them.) So try
this from the shell:
form.non_field_errors()
-Rajesh D