personal-statement.njk · 764 B · ext
.njk · seen 162× in SWHvia unique-primary
swh:1:cnt:4c1c4be18ae6abfef87b8b5112246a1e74ab6fff;origin=https://github.com/christopherthomasdesign/dfe-manage-teacher-applications;anchor=swh:1:rev:60531bd06cf7acfe999dcc406868e368471f0c35;path=/app/views/_includes/application/personal-statement.njk
Show source
{% set vocationKeyHtml %}
<h3 class="govuk-heading-s govuk-!-margin-bottom-0">Vocation</h3>
<p class="govuk-hint">Question to candidate: “Why do you want to be a teacher?”</p>
{% endset %}
{% set subjectKnowledgeKeyHtml %}
<h3 class="govuk-heading-s govuk-!-margin-bottom-0">Subject knowledge</h3>
<p class="govuk-hint">Question to candidate: “Your knowledge about the subject you want to teach”</p>
{% endset %}
{{ govukSummaryList({
rows: [{
key: {
html: vocationKeyHtml
},
value: {
html: application.personalStatement.vocation | nl2br or "—"
}
}, {
key: {
html: subjectKnowledgeKeyHtml
},
value: {
html: application.personalStatement.subjectKnowledge | nl2br or "—"
}
}]
}) }}