-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2251 from DFE-Digital/subject-restricted-content
Add age and subject restriction content
- Loading branch information
Showing
2 changed files
with
76 additions
and
13 deletions.
There are no files selected for viewing
42 changes: 38 additions & 4 deletions
42
app/views/shared/_teaching_qualification_information.html.erb
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 |
---|---|---|
@@ -1,7 +1,41 @@ | ||
<% if region.teaching_qualification_information.present? %> | ||
<%= raw GovukMarkdown.render(region.teaching_qualification_information) %> | ||
<% country = region.country %> | ||
<% region_information = region.teaching_qualification_information %> | ||
<% country_information = country.teaching_qualification_information %> | ||
|
||
<% if region_information.present? || country_information.present? %> | ||
<h2 class="govuk-heading-m">Qualification criteria for <%= CountryName.from_country(country, with_definite_article: true) %></h2> | ||
|
||
<% if region_information.present? %> | ||
<%= raw GovukMarkdown.render(region_information) %> | ||
<% end %> | ||
|
||
<% if country_information.present? %> | ||
<%= raw GovukMarkdown.render(country_information) %> | ||
<% end %> | ||
<% end %> | ||
|
||
<% if region.country.teaching_qualification_information.present? %> | ||
<%= raw GovukMarkdown.render(region.country.teaching_qualification_information) %> | ||
<% if country.subject_limited %> | ||
<h2 class="govuk-heading-m">Age and subject restrictions</h2> | ||
|
||
<p class="govuk-body"> | ||
We only accept applications from teachers from <%= CountryName.from_country(country, with_definite_article: true) %> who are qualified to teach children aged 11-16 in one or more of the following specific subjects: | ||
</p> | ||
|
||
<p class="govuk-body"> | ||
Maths, Science, Biology, Chemistry, Physics, French, German, Italian, Japanese, Latin, Mandarin, Russian, Spanish. | ||
</p> | ||
|
||
<p class="govuk-body"> | ||
We do not accept related subjects, for example economics instead of maths, agricultural science instead of biology or engineering instead of physics. | ||
</p> | ||
|
||
<p class="govuk-body">Qualified means:</p> | ||
|
||
<ul class="govuk-list govuk-list--bullet"> | ||
<li>Your teaching qualification specifically states that you can teach one of the subjects listed above, for example, the subject is in the title of your teaching qualification</li> | ||
<li>Your teaching qualification certificate shows at least 25% of your teaching qualification was in one of the listed subjects</li> | ||
<li>Your bachelor’s degree certificate shows at least 50% of your degree was in one of the listed subjects</li> | ||
</ul> | ||
|
||
<p class="govuk-body">We accept any of the above as evidence you are qualified to teach a specific subject.</p> | ||
<% end %> |
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