RE: NEED HELP BADLY

2008-07-17 Thread Kadusale, Myles
PROTECTED] On Behalf Of Dan Sent: Friday, July 18, 2008 11:25 AM To: django-users@googlegroups.com Subject: Re: NEED HELP BADLY On Thu, Jul 17, 2008 at 10:53 PM, Joshua Jonah <[EMAIL PROTECTED]> wrote: Is this the best way to organize the files in Django? Not important, it's pe

Re: NEED HELP BADLY

2008-07-17 Thread Dan
On Thu, Jul 17, 2008 at 10:53 PM, Joshua Jonah <[EMAIL PROTECTED]> wrote: > Is this the best way to organize the files in Django? > > Not important, it's personal taste. > Although, it is most of the time preferable to use regex group in your URLs rather than GET. It looks much nicer. --~--~---

Re: NEED HELP BADLY

2008-07-17 Thread TiNo
How about:http://www.djangoproject.com/documentation/tutorial03/ On Fri, Jul 18, 2008 at 4:53 AM, Joshua Jonah <[EMAIL PROTECTED]> wrote: > Is this the best way to organize the files in Django? > > Not important, it's personal taste. > > Also in a web cart scenario where is the best area to p

Re: NEED HELP BADLY

2008-07-17 Thread Joshua Jonah
Is this the best way to organize the files in Django? Not important, it's personal taste. Also in a web cart scenario where is the best area to put the data of the items inside the cart? Umm, i would say in a database Is it good to put the checking if the user has login in the base template

Re: NEED HELP BADLY

2008-07-17 Thread Juanjo Conti
In views.py you define as many python functions as cotrollers you want. Hech one has thsi signature: def view1(request, *args, **kwargs) You also have a urls.py file that maps urls to view functions. -- Juanjo Conti --~--~-~--~~~---~--~~ You received this messa