Add forgotten name attribute.

This commit is contained in:
Paulo Reis 2016-07-26 14:47:48 +01:00
parent ab305ea07e
commit 6d0779b8f8

View file

@ -153,6 +153,7 @@ div.full-size.pdf(ng-controller="PdfController")
.radio: label
input(
type="radio"
name="{{ 'neg-feedback-reason-' + $index }}"
ng-model="negFeedbackReason"
value="{{ logHintsNegFeedbackValues.DIDNT_UNDERSTAND }}"
)
@ -160,6 +161,7 @@ div.full-size.pdf(ng-controller="PdfController")
.radio: label
input(
type="radio"
name="{{ 'neg-feedback-reason-' + $index }}"
ng-model="negFeedbackReason"
value="{{ logHintsNegFeedbackValues.NOT_APPLICABLE }}"
)
@ -167,6 +169,7 @@ div.full-size.pdf(ng-controller="PdfController")
.radio: label
input(
type="radio"
name="{{ 'neg-feedback-reason-' + $index }}"
ng-model="negFeedbackReason"
value="{{ logHintsNegFeedbackValues.INCORRECT }}"
)
@ -174,6 +177,7 @@ div.full-size.pdf(ng-controller="PdfController")
.radio: label
input(
type="radio"
name="{{ 'neg-feedback-reason-' + $index }}"
ng-model="negFeedbackReason"
value="{{ logHintsNegFeedbackValues.OTHER }}"
)