Sha256: 493cb0d5035db46bdaeb70bbde7aeaade201b0be57387521b84df77f99f31789

Contents?: true

Size: 760 Bytes

Versions: 6

Compression:

Stored size: 760 Bytes

Contents

<% name ||= id %>
<% required ||= false %>
<% required_class = required ? ' required' : ' optional' %>
<% value ||= true %>
<div class="form-group string <%= required_class %> <%= id %>">
  <label class="string <%= required_class %> control-label col-sm-3 control-label"><%= label %></label>
  <div class="col-sm-9">
    <label class="radio">
      <input type="radio" value="true" name="<%= name %>" id="<%= id %>_true"<%= value ? ' checked="checked"' : '' %> class="radio_buttons <%= required_class %>"/>
      Yes
    </label>
    <label class="radio">
      <input type="radio" value="false" name="<%= name %>" id="<%= id %>_false"<%= value ? '' : ' checked="checked"' %>  class="radio_buttons <%= required_class %>"/>
      No
    </label>
  </div>
</div>

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
voluntary-0.7.1 app/views/shared/layouts/twitter_bootstrap/control_group/_boolean.html.erb
voluntary-0.7.0 app/views/shared/layouts/twitter_bootstrap/control_group/_boolean.html.erb
voluntary-0.6.0 app/views/shared/layouts/twitter_bootstrap/control_group/_boolean.html.erb
voluntary-0.5.2 app/views/shared/layouts/twitter_bootstrap/control_group/_boolean.html.erb
voluntary-0.5.1 app/views/shared/layouts/twitter_bootstrap/control_group/_boolean.html.erb
voluntary-0.5.0 app/views/shared/layouts/twitter_bootstrap/control_group/_boolean.html.erb