I have a table and I am putting data into the cells using tal. I want to bold the data under a certain condition. I tried this, but it didn&#39;t work:<br><br>&lt;td tal:content=&quot;string:${player/name}&quot;&gt;&lt;b tal:condition=&quot;python:str(player[&#39;name&#39;]) == &#39;Team&#39;&quot;&gt;name&lt;/b&gt;&lt;/td&gt;<br>
<br>The data (player/name) appears correctly, but when player/name=&#39;Team&#39;, the text is not bold. After some reading, I believe what is happening is that the tal:content tag is replacing everything between the &lt;td&gt; and the &lt;/td&gt; tags. Is this correct? I tried this, and no bold either:<br>
<br>&lt;td tal:content=&quot;string:${player/GP}&quot;&gt;&lt;b&gt;GP&lt;/b&gt;&lt;/td&gt;<br><br>which supports my hypothesis about the tal:content tag.<br><br>How do I add some &quot;conditional bold effect&quot; in my table data?<br>
<br>Mark<br><br>