kai-jacobsen/kontentblocks

View on GitHub
core/Fields/Definitions/templates/checkbox/default.twig

Summary

Maintainability
Test Coverage
{% extends Form.getLayout() %}
{% block fieldmarkup %}
    <label><input type='checkbox' id='{{ Form.getInputFieldId() }}'
                  name='{{ Form.getFieldName() }}' {{ checked(Field.getValue(), true, false) }} /> {{ Field.getArg( 'text', Field.getArg('label') ) }}
    </label>
{% endblock %}