On Monday 28 August 2006 17:46, hamilton ganesan wrote:
> Hi Adam,
>
> This is that problem line :
>
> *<div py:if="value_of("tg_flash", None)" class="flash"
> py:content="tg_flash"></div>*
>
> Can you perhaps spot the error???

You use double quotes in and outside the attribute. That won't work.

Use

<div py:if="value_of('tg_flash', None)" class="flash" 
py:content="tg_flash"></div>


Diez

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"TurboGears" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/turbogears
-~----------~----~----~----~------~----~------~--~---

Reply via email to