Skip to content

Commit

Permalink
SAK-43588 T&Qs : show feedback for file upload and audio questions (s…
Browse files Browse the repository at this point in the history
…akaiproject#8174)

(cherry picked from commit fb5de66)
  • Loading branch information
bgarciaentornos authored and ern committed May 19, 2020
1 parent b427e1f commit 1445d53
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,11 @@ should be included in file importing DeliveryMessages

</h:column>
</h:dataTable>

<h:panelGrid rendered="#{delivery.feedbackComponent.showItemLevel && question.feedbackIsNotEmpty}">
<h:panelGroup>
<h:outputLabel for="feedSC" styleClass="answerkeyFeedbackCommentLabel" value="#{commonMessages.feedback}: " />
<h:outputText id="feedSC" value="#{question.feedback}" escape="false" />
</h:panelGroup>
<h:outputText value=" " />
</h:panelGrid>
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,10 @@ should be included in file importing DeliveryMessages
</h:column>
</h:dataTable>


<h:panelGrid rendered="#{delivery.feedbackComponent.showItemLevel && question.feedbackIsNotEmpty}">
<h:panelGroup>
<h:outputLabel for="feedSC" styleClass="answerkeyFeedbackCommentLabel" value="#{commonMessages.feedback}: " />
<h:outputText id="feedSC" value="#{question.feedback}" escape="false" />
</h:panelGroup>
<h:outputText value=" " />
</h:panelGrid>

0 comments on commit 1445d53

Please sign in to comment.