-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[CCAP-672] - implement registration-submit-confirmation screen and co…
…de cleanup (#1221)
- Loading branch information
Showing
12 changed files
with
174 additions
and
169 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
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
30 changes: 30 additions & 0 deletions
30
src/main/resources/templates/fragments/inputs/surveyQuestion.html
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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<th:block th:fragment="surveyQuestion" | ||
th:assert="${!#strings.isEmpty(inputName)}, ${!#strings.isEmpty(label)}"> | ||
<th:block th:replace="~{fragments/inputs/radioFieldset :: | ||
radioFieldset(inputName=${inputName}, | ||
label=${#messages.msg(label)}, | ||
content=~{::radioContent})}"> | ||
<th:block th:ref="radioContent"> | ||
<th:block th:replace="~{fragments/inputs/radio :: radio( | ||
inputName=${inputName}, | ||
value='very-easy', | ||
label=#{general-survey-question.very-easy})}"/> | ||
<th:block th:replace="~{fragments/inputs/radio :: radio( | ||
inputName=${inputName}, | ||
value='easy', | ||
label=#{general-survey-question.easy})}"/> | ||
<th:block th:replace="~{fragments/inputs/radio :: radio( | ||
inputName=${inputName}, | ||
value='neither', | ||
label=#{general-survey-question.neither})}"/> | ||
<th:block th:replace="~{fragments/inputs/radio :: radio( | ||
inputName=${inputName}, | ||
value='difficult', | ||
label=#{general-survey-question.difficult})}"/> | ||
<th:block th:replace="~{fragments/inputs/radio :: radio( | ||
inputName=${inputName}, | ||
value='very-difficult', | ||
label=#{general-survey-question.very-difficult})}"/> | ||
</th:block> | ||
</th:block> | ||
</th:block> |
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
Oops, something went wrong.