Re: Dynamically content in include statement not working

2010-05-12 Thread Brian
Tom Thank you, Thanks you, Thank you. {% include inpage.footer %} works just fine. The {{}} is unnecessary as I had it. Sometime the brain is not working. Thanks again. On May 12, 11:36 am, Tom Evans wrote: > On Wed, May 12, 2010 at 4:31 PM, Brian wrote: > > Tom, I'm sorry > > I am using incl

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 NOT work for me: > {% include "{{inpage.footer}}" %} > > (

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 == "FooterMessage.htm") On May 12, 11

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