我在金字塔框架和TAL中使用Chameleon。不幸的是,TAL删除了第一个标签。
HTML的模板:
<label tal:attributes="for item.id">
<span i18n:translate="Because:" tal:condition="item.leading_because">Because:</span>
<span tal:repeat="premise item.premises" tal:attributes="for item.id; id premise.id">
<span tal:attributes="for item.id; id premise.id" tal:content="premise.title">premise</span>
<span tal:condition="not:repeat.premise.end">
<i><span i18n:translate="and"> and </span></i>
</span>
</span>
</label>
渲染示例:
<li>
<input type="radio" name="discussion-button-group" onclick="location.href="http://localhost:4284/d/cat-or-dog/r/11/undermine/29"" id="11">
<label for="11">
Because: Cats are fluffy and Cats are small
</label>
现在我错过了&#34中的所有span-Tags;因为...&#34;,有人知道吗,为什么?
THX
答案 0 :(得分:1)
我认为你的结束标签搞砸了。你没有匹配对。
答案 1 :(得分:0)
经过一些关于神秘的span-和label-tag的测试和思考,这将解决任何问题:
<li tal:repeat="item items">
<input type="radio" name="discussion-button-group" onclick="" tal:attributes="id item.id; onclick item.url">
<label tal:attributes="for item.id" tal:condition="item.leading_because">
<span tal:omit-tag="" tal:attributes="for item.id" i18n:translate="Because:">Because:</span>
</label>
<span tal:repeat="premise item.premises" tal:omit-tag="">
<label tal:attributes="for item.id; id premise.id" tal:content="premise.title">premise</label>
<label tal:condition="not:repeat.premise.end"> <em i18n:translate="and">and</em> </label>
</span>
所以我会在输入标签上填充标签:)