Ok; there are a few problems 1) in urls.py, new_dict pushes post_save_redirects to "/invoices/". However, no URL handler is set up for that url. However, you haven't hit this problem yet - the main problem is...
2) ticket_form.html doesn't contain a form.theater element. As a result, submitting a new ticket doesn't specify a theater for the ticket. Since theater is a required element of ticket, no ticket object can be created as part of the post. In addition to this... 3) The output of error fields on ticket_form.html seem to be taken from another project. They reference form.project.errors, form.action.errors, and form.category.errors, rather than form.case_number_errors. They also refer to the 'user' object, even though you are not using logins. The behaviour you are seeing is that the form you are submitting has errors, but your template isn't correctly rendering the display of those errors. If there is an error processing a POST request, the generic view redisplays the original form, but populates the context with error messages. Since failure in Django template variables is silent, you weren't seeing the form errors, and you weren't seeing an error telling you that you weren't displaying the form errors. Yours, Russ Magee %-) --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---