-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #862 from psu-libraries/856-remove-heading-honors
856 remove heading honors
- Loading branch information
Showing
14 changed files
with
49 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,4 +19,3 @@ | |
<% end %> | ||
</div> | ||
</div> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,4 +5,3 @@ | |
<br> | ||
<%= render partial: 'shared/federal_funding_form', locals: {f: f} %> | ||
</div> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,39 @@ | ||
<div tabindex="0"> | ||
<%= f.simple_fields_for :federal_funding_details, @submission.federal_funding_details do |g| %> | ||
<%= g.label :training_support_funding, I18n.t("#{current_partner.id}.federal_funding_author.question_1").html_safe %> | ||
<%= g.label :training_support_funding, 'Yes'%> | ||
<%= g.label :training_support_funding, 'Yes' %> | ||
<%= g.radio_button :training_support_funding, true %><br> | ||
|
||
<div id="fed_funding_confirmation_author_1" class="ml-5 collapse hide" aria-live="polite"> | ||
<div class="alert alert-info"> | ||
<p><%= I18n.t("#{current_partner.id}.federal_funding_author.confirmation").html_safe%></p> | ||
<%= g.label :training_support_acknowledged, 'Yes'%> | ||
<p><%= I18n.t("#{current_partner.id}.federal_funding_author.confirmation").html_safe %></p> | ||
<%= g.label :training_support_acknowledged, 'Yes' %> | ||
<%= g.radio_button :training_support_acknowledged, true %><br> | ||
<%= g.label :training_support_acknowledged, 'No'%> | ||
<%= g.label :training_support_acknowledged, 'No' %> | ||
<%= g.radio_button :training_support_acknowledged, false %> | ||
</div> | ||
<p id="fed_funding_error_message_author_1" class="collapse hide alert alert-danger"><%= I18n.t("#{current_partner.id}.federal_funding_author.error_message").html_safe%></p> | ||
<p id="fed_funding_error_message_author_1" class="collapse hide alert alert-danger"><%= I18n.t("#{current_partner.id}.federal_funding_author.error_message").html_safe %></p> | ||
</div> | ||
|
||
<%= g.label :training_support_funding, 'No'%> | ||
<%= g.label :training_support_funding, 'No' %> | ||
<%= g.radio_button :training_support_funding, false %> | ||
<br> | ||
<%= g.label :other_funding, I18n.t("#{current_partner.id}.federal_funding_author.question_2").html_safe %><br> | ||
<%= g.label :other_funding, 'Yes'%> | ||
<%= g.label :other_funding, 'Yes' %> | ||
<%= g.radio_button :other_funding, true %><br> | ||
<div id="fed_funding_confirmation_author_2" class="ml-5 collapse hide" aria-live="polite"> | ||
<div class="alert alert-info"> | ||
<p><%= I18n.t("#{current_partner.id}.federal_funding_author.confirmation").html_safe %></p> | ||
<%= g.label :other_funding_acknowledged, 'Yes'%> | ||
<%= g.label :other_funding_acknowledged, 'Yes' %> | ||
<%= g.radio_button :other_funding_acknowledged, true %><br> | ||
<%= g.label :other_funding_acknowledged, 'No'%> | ||
<%= g.label :other_funding_acknowledged, 'No' %> | ||
<%= g.radio_button :other_funding_acknowledged, false %> | ||
</div> | ||
<p id="fed_funding_error_message_author_2" class="collapse hide alert alert-danger"><%= I18n.t("#{current_partner.id}.federal_funding_author.error_message").html_safe%></p> | ||
<p id="fed_funding_error_message_author_2" class="collapse hide alert alert-danger"><%= I18n.t("#{current_partner.id}.federal_funding_author.error_message").html_safe %></p> | ||
</div> | ||
|
||
<%= g.label :other_funding, 'No'%> | ||
<%= g.label :other_funding, 'No' %> | ||
<%= g.radio_button :other_funding, false %> | ||
<% end %> | ||
</div> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters