Re: preventing escaping of less-than and greater-thans in tal:replace
"Don Morrison" <[email protected]> Mon, 14 Aug 2006 11:36:41 -0700
| Newsgroups | gmane.comp.web.zope.page-templates |
|---|---|
| Message-ID | <[email protected]> |
I refactored some...
<select name="task" tabindex="2" onchange="ifnew_showdiv('new_task')">
<div tal:repeat="record task_list" tal:omit-tag="">
<option tal:define="r record/name; id record/task_id;"
tal:attributes="label r; value id" tal:content="r">
Example Option
</option>
</div>
<option label="New" value="New">New</option>
</select>