Hello,

Here it is some documentation :
  * http://www.djangobook.com/en/1.0/chapter07/
  * http://www.djangoproject.com/documentation/newforms/

The short answer to your question is the switch is done inside the
views.py. You will make at least 2 cases there one if the "method" is
"POST" and an other cases if it is not "POST. This will look to
somthing like this :

"""
def contact(request):
    if request.method == 'POST':
        form = ContactForm(request.POST)
        if form.is_valid():
            # Do form processing here...
            return HttpResponseRedirect('/url/on_success/')
    else:
        form = ContactForm()
    return render_to_response('contact.html', {'form': form})
"""
Of course you will need to fill the blank with your own business
logic.

I hope that will help you.
--yml

On 2 juin, 16:38, Bobby Roberts <[EMAIL PROTECTED]> wrote:
> hi all.  I'm new to python and Django but have extensive experience on
> the microsoft side of things.  I am liking what I see so far with this
> platform.   forms/newforms seems confusing to me and I need some help
> tying everything together.
>
> I have a simple one field form built in my forms.py and the template
> is designed to show the form as well.  However, with a form action of
> "." in the template, how in the world does Django know what to do?
>
> Is there any more indepth documentation for django other than
> djangobook?
--~--~---------~--~----~------------~-------~--~----~
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