<div dir="ltr">Hi, people!<br><br>In the OrederedSelectWidget&#39;s input template there&#39;s a little bug in options displaying. Options (for selectedItems and notSelectedItems) are displayed using expression like this (simplified):<br>
<br>&lt;option tal:content=&quot;entry/content&quot; /&gt;<br><br>Which will result in calling entry[&#39;content&#39;] if it is callable, which is true (for example) for the standard zope&#39;s &quot;Content Types&quot; vocabulary from zope.app.content, because by default the term.value is used for the &quot;content&quot; and then, if the term provides ITitleTokenizedTerm it is replaced with translated term.title. But in the &quot;Content Types&quot; vocabulary, terms are not titled, so term.value is used, which is some Interface subclass and which is callable.<br>
<br>So, as far as I understand, to fix little issue, we need to add the &quot;nocall&quot; modifier in the template, so option expression will look like this (simplifed):<br><br>&lt;option tal:content=&quot;nocall:entry/content&quot; /&gt;<br>
<br>Thanks!<br><br>PS Is there any bug tracking system for z3c.form package (like zope&#39;s general one on launchpad)?<br>
<br>-- <br>WBR, Dan Korostelev<br>
</div>