<form class="usa-form">
  <fieldset class="usa-fieldset">
    <legend class="usa-legend">Select one historical figure</legend>
    <div class="usa-radio">
      <input 
        class="usa-radio__input usa-radio__input--tile" 
        id="historical-truth-2"  
        type="radio" 
        name="historical-figures-2" 
        value="sojourner-truth" 
        {% if not indeterminate_state %} checked {% endif %}
        {% if disabled_state == "disabled" %}disabled{% endif %} 
        {% if disabled_state == "aria-disabled" %}aria-disabled="true"{% endif %}
      >
      <label class="usa-radio__label" for="historical-truth-2">Sojourner Truth</label>
    </div>
    <div class="usa-radio">
      <input 
        class="usa-radio__input usa-radio__input--tile" 
        id="historical-douglass-2" 
        type="radio" 
        name="historical-figures-2" 
        value="frederick-douglass" 
        {% if disabled_state == "disabled" %}disabled{% endif %} 
        {% if disabled_state == "aria-disabled" %}aria-disabled="true"{% endif %}
      >
      <label class="usa-radio__label" for="historical-douglass-2">Frederick Douglass <span class="usa-checkbox__label-description">This is optional text that can be used to describe the label in more detail.</span></label>
    </div>
    <div class="usa-radio">
      <input 
        class="usa-radio__input usa-radio__input--tile" 
        id="historical-washington-2" 
        type="radio" 
        name="historical-figures-2" 
        value="booker-t-washington"  
        {% if disabled_state == "disabled" %}disabled{% endif %} 
        {% if disabled_state == "aria-disabled" %}aria-disabled="true"{% endif %}
      >
      <label class="usa-radio__label" for="historical-washington-2">Booker T. Washington</label>
    </div>
    <div class="usa-radio">
      <input 
        class="usa-radio__input usa-radio__input--tile" 
        id="historical-carver-2" 
        type="radio" 
        name="historical-figures-2" 
        value="george-washington-carver" disabled
      >
      <label class="usa-radio__label" for="historical-carver-2">George Washington Carver</label>
    </div>
  </fieldset>
</form>
