diff --git a/app/assets/stylesheets/components/_accordion.scss b/app/assets/stylesheets/components/_accordion.scss index 81ca8435f0..632e0561d2 100644 --- a/app/assets/stylesheets/components/_accordion.scss +++ b/app/assets/stylesheets/components/_accordion.scss @@ -54,3 +54,7 @@ body:not(.js-enabled) { border-left: govuk-spacing(1) solid govuk-colour("orange"); background-color: govuk-colour("light-grey"); } + +.accordion-no-margin-bottom { + margin-bottom: 0px; +} diff --git a/app/views/find/search/locations/_form.html.erb b/app/views/find/search/locations/_form.html.erb index 378cd21124..25e77f8f71 100644 --- a/app/views/find/search/locations/_form.html.erb +++ b/app/views/find/search/locations/_form.html.erb @@ -136,6 +136,52 @@ + +
+
+
+ <%= govuk_accordion(html_attributes: { class: "accordion-without-controls accordion-no-margin-bottom" }) do |accordion| %> + <%= accordion.with_section(heading_text: content_tag(:h3, "Teacher degree apprenticeships (TDA)", class: "govuk-heading-m")) do %> +

Teach primary or secondary if you do not have a degree and are not studying for one.

+

<%= govuk_link_to("Browse teacher degree apprenticeship courses.", find_root_path) %>

+

Learn about <%= govuk_link_to("teacher degree apprenticeships.", t("find.get_into_teaching.url_tda")) %>

+ <% end %> + <% end %> +
+
+ +
+
+ <%= govuk_accordion(html_attributes: { class: "accordion-without-controls accordion-no-margin-bottom" }) do |accordion| %> + <%= accordion.with_section(heading_text: content_tag(:h3, "Special educational needs and disabilities (SEND)", class: "govuk-heading-m")) do %> +

All initial teacher training courses cover teaching pupils with SEND, but some courses have a SEND specialism.

+

<%= govuk_link_to("Browse primary courses with a SEND specialism.", find_root_path) %>

+

<%= govuk_link_to("Browse secondary courses with a SEND specialism.", find_root_path) %>

+

Learn about <%= govuk_link_to("teaching pupils with special educational needs and disabilities.", t("find.get_into_teaching.url_tda")) %>

+ <% end %> + <% end %> +
+
+ +
+
+ <%= govuk_accordion(html_attributes: { class: "accordion-without-controls accordion-no-margin-bottom" }) do |accordion| %> + <%= accordion.with_section(heading_text: content_tag(:h3, "Teaching other stages", class: "govuk-heading-m")) do %> +

Nursery or pre-school

+ +

Help young children under 5 years old to develop by becoming an early years teacher.

+

Learn about <%= govuk_link_to("the routes to become an early years teacher.", t("find.get_into_teaching.url_tda")) %>

+ +

Further education

+ +

Teach young people and adults over 16 who are not studying for a degree.

+

<%= govuk_link_to("Browse further education courses.", find_root_path) %>

+

Learn about <%= govuk_link_to("teaching in further education.", t("find.get_into_teaching.url_tda")) %>

+ <% end %> + <% end %> +
+
+
<% end %>