Re: HELP - Writing your first Django app, part 1

2016-10-16 Thread 'Nick Bansal' via Django users
Cheers! got it! On Friday, 14 October 2016 22:45:05 UTC+1, Asad Jibran Ahmed wrote: > > Just save the file inside the *poll *folder. That creates the file. > > Asad Jibran Ahmed > http://blog.asadjb.com > > On Fri, Oct 14, 2016 at 9:55 PM, 'Nick Bansal' via Django users < >

Re: HELP - Writing your first Django app, part 1

2016-10-15 Thread Armando Licurgo
criar arquivo vazio em unixlike use touch nome_do_arquivo Armando Licurgo Software Developer 2016-10-14 18:44 GMT-03:00 Asad Jibran Ahmed : > Just save the file inside the *poll *folder. That creates the file. > > Asad Jibran Ahmed >

Re: HELP - Writing your first Django app, part 1

2016-10-14 Thread Asad Jibran Ahmed
Just save the file inside the *poll *folder. That creates the file. Asad Jibran Ahmed http://blog.asadjb.com On Fri, Oct 14, 2016 at 9:55 PM, 'Nick Bansal' via Django users < django-users@googlegroups.com> wrote: > I tried to create a new file (im using sublime text) but

Re: HELP - Writing your first Django app, part 1

2016-10-14 Thread 'Nick Bansal' via Django users
I tried to create a new file (im using sublime text) but it just gave me a new tab... How do I create a new file in an app? On Friday, 14 October 2016 17:41:43 UTC+1, Asad Jibran Ahmed wrote: > > Just create a new file in whatever text editor you're using (I suggest > Sublime Text if you're

Re: HELP - Writing your first Django app, part 1

2016-10-14 Thread Vineet Kothari
Inside your app create a file name filename.py you can create any file so on .as you will proceed further you get the idea . On Oct 14, 2016 10:11 PM, "Asad Jibran Ahmed" wrote: > > Just create a new file in whatever text editor you're using (I suggest Sublime Text if you're

Re: HELP - Writing your first Django app, part 1

2016-10-14 Thread Asad Jibran Ahmed
Just create a new file in whatever text editor you're using (I suggest Sublime Text if you're looking for options) and save the file as urls.py inside the polls directory. Asad Jibran Ahmed http://blog.asadjb.com On Fri, Oct 14, 2016 at 8:00 PM, 'Nick Bansal' via Django

HELP - Writing your first Django app, part 1

2016-10-14 Thread 'Nick Bansal' via Django users
Hi, I'm struggling to figure out how to do the following command: "To create a URLconf in the polls directory, create a file called urls.py. Your app directory should now look like:" How do I create a file called urls.py in the app directory? am I missing something completely obvious? Any