Skip to content

Commit

Permalink
✨ Add field to insert html after a question in the voting/review scre…
Browse files Browse the repository at this point in the history
…ens (#471)

Parent issue: sequentech/meta#2572
  • Loading branch information
Findeton committed Sep 25, 2024
1 parent 6afe302 commit 9f5b119
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -167,4 +167,10 @@ <h1 aria-level="2" class="text-brand-success question-title" id="question-{{ que
ng-i18next="avBooth.emptyAnswer">
</li>
</ol>
<div
ng-class="question-footer-html"
ng-if="question.extra_options && question.extra_options.footer_html"
ng-bind-html="question.extra_options.footer_html"
>
</div>
</section>
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,13 @@ <h2 class="question-title" id="question-{{ question.index }}" aria-level="2" ng-
hide-check="false"
>
</div>
</div">

<div
ng-class="question-footer-html"
ng-if="question.extra_options && question.extra_options.footer_html"
ng-bind-html="question.extra_options.footer_html"
>
</div>

<!-- QUESTION OPTIONS END -->
Expand Down

0 comments on commit 9f5b119

Please sign in to comment.