yeah i'm looking at that but it doesn't make sense to me..... here's a
snip
of my template, the forms.py file and the views.py file.  Here are my
questions:

1.  the form doesn't show up on the template... what am I missing here
to
get my form to show up?

2.  how in the world do I tell the system that the form on the
template
should submit and use the process_upslookup view?



-lost



*template.html* (snip)

            <form method="post" action=".">
                {{ form }}
                <input type="submit" name="submit" value="Get
Estimate*">
            </form>


*forms.py*

from django import newforms as forms

class form_upslookup(forms.Form):
    zipcode=forms.CharField(max_length=15, required=True,
help_text='Please
enter your zipcode')



*views.py*

from  forms import form_upslookup

def process_upslookup(request):
    if request.method=='POST':
        form = form_upslookup
        query = request.POST.get('zipcode','')
        if query:
            results=query
        else:
            results="No Zipcode Entered"
        return render_to_response ("UPSRateLookUp/upsratelookup.html",
{
        "results": results,
        "query": query
        })
    else:
        form = form_upslookup()
        return render_to_response ("UPSRateLookUp/upsratelookup.html")

On Jun 2, 11:38 am, yml <[EMAIL PROTECTED]> wrote:
> 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