Re: Need help understanding Custom Views

2006-10-02 Thread Waylan Limberg
On 10/2/06, adamjspooner <[EMAIL PROTECTED]> wrote: > > > Do you mean that you do not understand how to pass the data to the > > template for display, or something else? > > Waylan, > > I mean I don't understand how to pass the data from my Django app to my > PHP webservice and then let the user k

Re: Need help understanding Custom Views

2006-10-02 Thread adamjspooner
> Do you mean that you do not understand how to pass the data to the > template for display, or something else? Waylan, I mean I don't understand how to pass the data from my Django app to my PHP webservice and then let the user know that everything went ok or post errors if it didn't. I studie

Re: Need help understanding Custom Views

2006-10-02 Thread adamjspooner
> Do you mean that you do not understand how to pass the data to the > template for display, or something else? Waylan, I mean I don't understand how to pass the data from my Django app to my PHP webservice and then let the user know that everything went ok or post errors if it didn't. I studie

Re: Need help understanding Custom Views

2006-10-02 Thread Waylan Limberg
On 9/29/06, adamjspooner <[EMAIL PROTECTED]> wrote: > > Adrian, > > I guess what I don't understand is how to use GET and POST...and what > exactly they are GETting and POSTing...and what to name things and how > to get those named things in the view to get to a template. > > I want to learn the b

Re: Need help understanding Custom Views

2006-09-29 Thread adamjspooner
Adrian, I guess what I don't understand is how to use GET and POST...and what exactly they are GETting and POSTing...and what to name things and how to get those named things in the view to get to a template. I want to learn the basics and apply them. Gabor, I understand the "Hello World!" e

Re: Need help understanding Custom Views

2006-09-29 Thread gabor
adamjspooner wrote: > I don't understand writing my own views. I have little (more like no) > experience in using POST and GET and the lot. I've used generic views > to death in order to beat having to use custom views, but I'm now at > the point where I must write my own view (to access a PHP web

Re: Need help understanding Custom Views

2006-09-29 Thread Adrian Holovaty
On 9/29/06, adamjspooner <[EMAIL PROTECTED]> wrote: > I don't understand writing my own views. I have little (more like no) > experience in using POST and GET and the lot. I've used generic views > to death in order to beat having to use custom views, but I'm now at > the point where I must write

Need help understanding Custom Views

2006-09-29 Thread adamjspooner
I don't understand writing my own views. I have little (more like no) experience in using POST and GET and the lot. I've used generic views to death in order to beat having to use custom views, but I'm now at the point where I must write my own view (to access a PHP web service). Does anyone know