Re: Tutorial Part 3: loading index.html in browser

2012-11-25 Thread Sergiy Khohlov
Check this one : https://docs.djangoproject.com/en/dev/ref/settings/#std:setting-TEMPLATE_CONTEXT_PROCESSORS 2012/11/25 Luisa Beck : > Also, I get the following error message when rendering the page with my > local server: > > TemplateSyntaxError at /polls/ > > Could not parse the remainder: 'ht

Re: Tutorial Part 3: loading index.html in browser

2012-11-25 Thread Luisa Beck
Also, I get the following error message when rendering the page with my local server: TemplateSyntaxError at /polls/ Could not parse the remainder: 'http://poll.id/";>poll.id' from 'http://poll.id/";>poll.id' On Sunday, November 25, 2012 8:34:26 AM UTC-5, Luisa Beck wrote: > > Mm, I don't have

Re: Tutorial Part 3: loading index.html in browser

2012-11-25 Thread Luisa Beck
Mm, I don't have a TEMPLATE_CONTEXT_PROCESSORS section in the setting.py section. The setting.py file in my version of Django only includes TEMPLATE_DEBUG, TEMPLATE_LOADERS and TEMPLATE_DIRS. Could you specify what you mean? Thank you. On Sunday, November 25, 2012 8:16:00 AM UTC-5, Sergiy Kh

Re: Tutorial Part 3: loading index.html in browser

2012-11-25 Thread Sergiy Khohlov
looks like you have a problem with template processor could you please check setting.py section TEMPLATE_CONTEXT_PROCESSORS 2012/11/25 Luisa Beck : > Thank you Xavier and Sergiy for your responses. > > To clarify: I put the following code (see below) into my index.html file and > got a page displ

Re: Tutorial Part 3: loading index.html in browser

2012-11-25 Thread Luisa Beck
Thank you Xavier and Sergiy for your responses. To clarify: I put the following code (see below) into my index.html file and got a page displaying the code (rather than a list) when I rendered it in my browser by my local server: Could the problem have to do with my file system? I created a di

Re: Tutorial Part 3: loading index.html in browser

2012-11-24 Thread Sergiy Khohlov
Near too. simple example of your fitst template: http://www.djangobook.com/en/2.0/chapter04.html remove all after to and place your code inside this 2012/11/25 Luisa Beck : > I'm in the process of going through the Django tutorials. > I'm having trouble with loading the index.html fil

Re: Tutorial Part 3: loading index.html in browser

2012-11-24 Thread Xavier Ordoquy
Hi Luisa, Le 24 nov. 2012 à 23:38, Luisa Beck a écrit : > I'm in the process of going through the Django tutorials. > I'm having trouble with loading the index.html file into the browser. I don't > see a bulleted-list containing the "What's up" poll from Tutorial 1. Instead, > I'm simply seei