<fieldset class="usa-fieldset">
  <legend class="usa-legend">Select any historical figure</legend>
  <div class="usa-checkbox">
    <input
      class="usa-checkbox__input"
      id="check-historical-truth"
      type="checkbox"
      name="historical-figures"
      value="sojourner-truth"
      checked 
      {% if disabled_state == "disabled" %}disabled{% endif %} 
      {% if disabled_state == "aria-disabled" %}aria-disabled="true"{% endif %}
    >
    <label class="usa-checkbox__label" for="check-historical-truth">Sojourner Truth</label>
  </div>
  <div class="usa-checkbox">
    <input
      class="usa-checkbox__input"
      id="check-historical-douglass"
      type="checkbox"
      name="historical-figures"
      value="frederick-douglass"
      {% if indeterminate_state %}data-indeterminate{% endif %}
      {% if disabled_state == "disabled" %}disabled{% endif %} 
      {% if disabled_state == "aria-disabled" %}aria-disabled="true"{% endif %}
    >
    <label class="usa-checkbox__label" for="check-historical-douglass">Frederick Douglass</label>
  </div>
  <div class="usa-checkbox">
    <input
      class="usa-checkbox__input"
      id="check-historical-washington"
      type="checkbox"
      name="historical-figures"
      value="booker-t-washington"
      {% if disabled_state == "disabled" %}disabled{% endif %} 
      {% if disabled_state == "aria-disabled" %}aria-disabled="true"{% endif %}
    >
    <label class="usa-checkbox__label" for="check-historical-washington">Booker T. Washington</label>
  </div>
  <div class="usa-checkbox">
    <input
      class="usa-checkbox__input"
      id="check-historical-carver"
      type="checkbox"
      name="historical-figures"
      value="george-washington-carver"
      disabled
    >
    <label class="usa-checkbox__label"
    for="check-historical-carver">George Washington Carver</label>
  </div>
</fieldset>
