##// END OF EJS Templates
pull-request: force update pull-request in case of the target repo reference changes....
pull-request: force update pull-request in case of the target repo reference changes. - We should be able to force update a diff if the target repo reference changes. It will help detect commits that are pushed into the target from the origin. - Fixes #5266

File last commit:

r518:9f9ffd3a default
r1595:c00c09dd default
Show More
checkbox.pt
19 lines | 748 B | text/plain | TextLexer
<div class="checkbox">
<input tal:define="name name|field.name;
true_val true_val|field.widget.true_val;
css_class css_class|field.widget.css_class;
style style|field.widget.style;
oid oid|field.oid"
type="checkbox"
name="${name}" value="${true_val}"
id="${oid}"
tal:attributes="checked cstruct == true_val;
class css_class;
style style;" />
<label for="${field.oid}">
<span tal:condition="hasattr(field, 'schema') and hasattr(field.schema, 'label')"
tal:replace="field.schema.label" class="checkbox-label" >
</span>
</label>
</div>