Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bs4 benefits ai an selection fix #4192

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,12 @@
<fieldset id="ai_an_health_service_eligible_question" class="pb-4 driver-question">
<legend class="weight-n instruction-row"><%= l10n("faa.indian_health_service_eligible") %></legend>
<div class="focus d-flex mt-3 instruction-row">
<label class="radio mr-3" for="ai_an_health_service_eligible_true">
<input id="ai_an_health_service_eligible_true" type="radio" value="true" name="ai_an_health_service_eligible" <%='checked' if @applicant.health_service_eligible == true %>>
<label class="radio mr-3">
kristinmerbach marked this conversation as resolved.
Show resolved Hide resolved
<%= radio_button_tag("health_service_eligible", true, @applicant.health_service_eligible) %>
<span><%= l10n("yes") %></span>
</label>
<label class="radio mr-3" for="ai_an_health_service_eligible_false">
<input id="ai_an_health_service_eligible_false" type="radio" value="false" name="ai_an_health_service_eligible" <%='checked'if @applicant.health_service_eligible == false %>>
<label class="radio mr-3">
<%= radio_button_tag("health_service_eligible", false, @applicant.health_service_eligible == false) %>
<span><%= l10n("no") %></span>
</label>
</div>
Expand All @@ -71,12 +71,12 @@
<fieldset id="ai_an_health_service_through_referral_question" class="pb-4 driver-question">
<legend class="weight-n instruction-row"><%= l10n("faa.indian_health_service") %></legend>
<div class="focus d-flex mt-3 instruction-row">
<label class="radio mr-3" for="ai_an_health_service_through_referral_true">
<input id="ai_an_health_service_through_referral_true" type="radio" value="true" name="ai_an_health_service_through_referral" <%='checked' if @applicant.health_service_through_referral == true %>>
<label class="radio mr-3">
<%= radio_button_tag("health_service_through_referral", true, @applicant.health_service_through_referral) %>
<span><%= l10n("yes") %></span>
</label>
<label class="radio mr-3" for="ai_an_health_service_through_referral_false">
<input id="ai_an_health_service_through_referral_false" type="radio" value="false" name="ai_an_health_service_through_referral" <%='checked'if @applicant.health_service_through_referral == false %>>
<label class="radio mr-3">
<%= radio_button_tag("health_service_through_referral", false, @applicant.health_service_through_referral == false) %>
<span><%= l10n("no") %></span>
</label>
</div>
Expand Down
Loading