Re: Dynamically content in include statement not working

2010-05-12 Thread Brian
> > I am using include and it's not working: > > Dynamically content in include statement not working: > > > This works just fine: > > {% include "FooterMessage.htm" %} > > > This will NOT work for me: > > {% include "{{inpage.footer}}"

Re: Dynamically content in include statement not working

2010-05-12 Thread Tom Evans
On Wed, May 12, 2010 at 4:31 PM, Brian wrote: > Tom, I'm sorry > I am using include and it's not working: > Dynamically content in include statement not working: > > This works just fine: > {% include "FooterMessage.htm" %} > > > This will

Re: Dynamically content in include statement not working

2010-05-12 Thread Brian
Tom, I'm sorry I am using include and it's not working: Dynamically content in include statement not working: This works just fine: {% include "FooterMessage.htm" %} This will NOT work for me: {% include "{{inpage.footer}}" %} (I know that inpage.footer == &quo

Dynamically content in include statement not working

2010-05-12 Thread Brian
Help: Chapter 4: The Django Template System http://www.djangobook.com/en/1.0/chapter04/ This example includes the contents of the template whose name is contained in the variable template_name: {% include template_name %} All i'm trying to do is dynamically include a html template file This wo

Re: Dynamically content in include statement not working

2010-05-12 Thread Tom Evans
On Wed, May 12, 2010 at 4:10 PM, Brian wrote: > Help: > > Chapter 4: The Django Template System > http://www.djangobook.com/en/1.0/chapter04/ > > This example includes the contents of the template whose name is > contained in the variable template_name: > {% include template_name %} > > > All i'm

Dynamically content in include statement not working

2010-05-12 Thread Brian
Help: Chapter 4: The Django Template System http://www.djangobook.com/en/1.0/chapter04/ This example includes the contents of the template whose name is contained in the variable template_name: {% include template_name %} All i'm trying to do is dynamically include an html template file: This