37 lines
1.8 KiB
XML
37 lines
1.8 KiB
XML
<tal:comment replace="nothing">View macro for an Integer.</tal:comment>
|
|
<metal:view define-macro="view">
|
|
<span tal:replace="value"></span>
|
|
<input type="hidden" tal:condition="masterCss"
|
|
tal:attributes="class masterCss; value value; name name; id name"/>
|
|
</metal:view>
|
|
|
|
<tal:comment replace="nothing">Edit macro for an Integer.</tal:comment>
|
|
<metal:edit define-macro="edit">
|
|
<input tal:define="maxChars python: test(widget['maxChars'], widget['maxChars'], '')"
|
|
tal:attributes="id name; name name; size widget/width; maxlength maxChars;
|
|
value python: test(inRequest, requestValue, value)" type="text"/>
|
|
</metal:edit>
|
|
|
|
<tal:comment replace="nothing">Cell macro for an Integer.</tal:comment>
|
|
<metal:cell define-macro="cell">
|
|
<metal:call use-macro="app/ui/widgets/integer/macros/view"/>
|
|
</metal:cell>
|
|
|
|
<tal:comment replace="nothing">Search macro for an Integer.</tal:comment>
|
|
<metal:search define-macro="search"
|
|
tal:define="maxChars python: test(widget['maxChars'], widget['maxChars'], '')">
|
|
<label tal:content="python: _(widget['labelId'])"></label><br>
|
|
<tal:from define="fromName python: '%s*int' % widgetName">
|
|
<label tal:attributes="for fromName" tal:content="python: _('search_from')"></label>
|
|
<input type="text" size="4"
|
|
tal:attributes="name fromName; maxlength maxChars;
|
|
value python: widget['defaultForSearch'][0]"/>
|
|
</tal:from>
|
|
<tal:to define="toName python: '%s_to' % name">
|
|
<label tal:attributes="for toName" tal:content="python: _('search_to')"></label>
|
|
<input type="text" size="4"
|
|
tal:attributes="name toName; maxlength maxChars;
|
|
value python: widget['defaultForSearch'][1]"/>
|
|
</tal:to><br/>
|
|
</metal:search>
|