If you're simply trying to display error messages, if something is invalid - check carefully how this is being done in the examples in the documentation. The idea here is that you issue a redirect only when your data is validated, your object is saved and you must proceed to a different step. Now - if you want to return the same form on success, but still add an extra message - you can do different things.
Quite a lot of people are happy with adding a get parameter in the URL and displaying a message, if it's set. just redirect to "your_form?success=true", for example. Another way would be to redirect to "your_form/success", and setting up the pattern in the URLconf to match the success as an optional variable, that gets passed to the view. In essence - the effect is the same, it only matters what you prefer as a concept. I am sure there are other curious ways of doing that - using the session variables, for example, just make a pick that you find more reasonable. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [EMAIL PROTECTED] 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 -~----------~----~----~----~------~----~------~--~---