Re: can anyone help me in developing a simple webpage in jinja2

2013-04-07 Thread Cousin Stanley
Satabdi Mukherjee wrote: > i am a rookie in python and i am trying > to develop a simple webpage using jinja2. > > can anyone please help me how to do that You might try using your jinja template with named tuples # --- from jinja2 import Tem

Re: can anyone help me in developing a simple webpage in jinja2

2013-04-06 Thread Chris Angelico
On Sat, Apr 6, 2013 at 6:15 PM, Jan Riechers wrote: > The invalid syntax is raised when? Can you post the error a bit more > detailed, this will help giving you any advice. > > If you know the code part raising the error and you post it, this will also > help. Agreed. But my guess would be the la

Re: can anyone help me in developing a simple webpage in jinja2

2013-04-06 Thread Jan Riechers
On 06.04.2013 01:41, Satabdi Mukherjee wrote: i am a rookie in python and i am trying to develop a simple webpage using jinja2. can anyone please help me how to do that i am trying in this way but showing invalid syntax error [...] {% for item in navigation %} {{ item.ca

can anyone help me in developing a simple webpage in jinja2

2013-04-05 Thread Satabdi Mukherjee
i am a rookie in python and i am trying to develop a simple webpage using jinja2. can anyone please help me how to do that i am trying in this way but showing invalid syntax error My Webpage {% for item in navigation %} {{ item.caption }} {% endfor %} My W