From 26d03305427362ed5edf3b63166946305adb29fc Mon Sep 17 00:00:00 2001 From: Martyn Whitwell Date: Thu, 21 Nov 2024 15:13:47 +0000 Subject: [PATCH] Assessment Only spreadsheet upload (#4269) * work in progress * linting * add spec test * add extension, ensure Non-UK sorted correctly * spec fixes * wip * more wip * handle international numbers and improve handling of missing regions * Reorder regions so national comes before non-uk * tweak formatting of extension * Tweak order of National; regenerate list --- .../grouped_cards/card_component.html.erb | 2 +- .../grouped_cards/card_component.rb | 23 +- .../assessment-only-route-to-qts.md | 1166 +++++++++++------ .../styles/components/grouped-cards.scss | 4 + lib/assessment_only_provider.rb | 32 + .../generate_assessment_only_providers.rake | 28 + .../assessment-only-route-to-qts.md.erb | 89 ++ .../support/assessment_only_providers.csv | 65 + .../grouped_cards/card_component_spec.rb | 6 +- spec/lib/assessment_only_provider_spec.rb | 72 + 10 files changed, 1049 insertions(+), 438 deletions(-) create mode 100644 lib/assessment_only_provider.rb create mode 100644 lib/tasks/generate_assessment_only_providers.rake create mode 100644 lib/tasks/support/assessment-only-route-to-qts.md.erb create mode 100644 lib/tasks/support/assessment_only_providers.csv create mode 100644 spec/lib/assessment_only_provider_spec.rb diff --git a/app/components/grouped_cards/card_component.html.erb b/app/components/grouped_cards/card_component.html.erb index f8c332fb5c..13646e5bf3 100644 --- a/app/components/grouped_cards/card_component.html.erb +++ b/app/components/grouped_cards/card_component.html.erb @@ -15,7 +15,7 @@ <% for field, value in fields %>
<%= field.humanize %>: - <%= linked_value(value) %> + <%= linked_value(field, value) %>
<% end %> diff --git a/app/components/grouped_cards/card_component.rb b/app/components/grouped_cards/card_component.rb index 515844279d..f6c4ea917a 100644 --- a/app/components/grouped_cards/card_component.rb +++ b/app/components/grouped_cards/card_component.rb @@ -25,11 +25,28 @@ def linked_header end def fields - @data.without("header", "link", "status") + @data.without("header", "link", "status", "extension", "international_phone") end - def linked_value(value) - Rinku.auto_link(h(value)).html_safe + def linked_value(field, value) + tags = [] + + if field == "telephone" && value.present? + tags << if @data["international_phone"].present? + # Although we present the national telephone number, we need to use the + # international_phone value in the URL to support overseas visitors + tag.span { link_to(value, "tel:#{@data['international_phone']}") } + else + tag.span { link_to(value, "tel:#{value}") } + end + # add extension here + if @data["extension"].present? + tags << tag.span(class: "extension") { @data["extension"] } + end + else + tags << tag.span { Rinku.auto_link(h(value)).html_safe } + end + safe_join tags end def link diff --git a/app/views/content/train-to-be-a-teacher/assessment-only-route-to-qts.md b/app/views/content/train-to-be-a-teacher/assessment-only-route-to-qts.md index 8464b53dd2..af607b16f6 100644 --- a/app/views/content/train-to-be-a-teacher/assessment-only-route-to-qts.md +++ b/app/views/content/train-to-be-a-teacher/assessment-only-route-to-qts.md @@ -16,460 +16,760 @@ fullwidth: true content: - content/train-to-be-a-teacher/assessment-only-route-to-qts/listing - content/train-to-be-a-teacher/assessment-only-route-to-qts/update-details + provider_groups: - East of England: + National: providers: - - header: BEC Teacher Training - link: https://www.billericayscitt.com/ - name: Fiona Manby - telephone: 01268 477611 (extn 471) - email: fiona@billericayscitt.com - - header: Chiltern Training Group SCITT - link: https://www.challneyboys.co.uk/ - name: Karen Bateman - telephone: '01582 599921' - email: kbateman@challneyboys.luton.sch.uk - - header: Colchester Teacher Training Consortium (CTTC) - link: https://www.colchesterttc.org.uk/ - name: Christine Wager - telephone: 01206 364728 - email: enquiries@colchesterttc.org.uk - - header: Educate Group Initial Teacher Training - link: https://educate-group.co.uk/initial-teacher-training-about-us/ - name: Educate Group HQ - telephone: 01978 281881 - email: aor@educate-group.co.uk - - header: Essex and Thames SCITT - link: https://etpscitt.co.uk/ - name: Emma Day and Sarah Sloper - telephone: '01268 988580' - email: assessmentonly@ete.org.uk - - header: Norfolk Teacher Training Centre - link: https://www.norfolkttc.org.uk/ - name: Jacqui Waring - telephone: 01603 773708 - email: jacqui.waring@ccn.ac.uk - - header: The Pilgrim Partnership - name: Bev Collier - telephone: 01234 907896 - email: bcollier@pilgrimpartnership.org - - header: Suffolk and Norfolk ITT - link: https://www.suffolkandnorfolkscitt.co.uk - name: Lucinda James - telephone: 01473 265077 - email: enquiries@suffolkandnorfolkscitt.co.uk - - header: The Bedfordshire Schools Training Partnership - link: https://www.bedsscitt.org.uk/ - name: David Goode - telephone: 01462 817445 - email: office@bedsscitt.org.uk - - header: The Cambridge Partnership - link: https://campartnership.org/ - name: Jackie Atkin - telephone: '01234 907896' - email: jatkin@pilgrimpartnership.org + - header: "Colchester Teacher Training Consortium" + link: "https://colchesterttc.org.uk/courses" + name: "Christine Wager" + email: "enquiries@colchesterttc.org.uk" + telephone: "01206 364728" + international_phone: "+441206364728" + + - header: "Educate Group Initial Teacher Training" + link: "https://educate-group.co.uk/assessment-only-route/" + name: "Claire King" + email: "aor@educate-group.co.uk" + telephone: "07973 286995" + international_phone: "+447973286995" + + - header: "Essex and Thames SCITT" + link: "https://etpscitt.co.uk/our-courses-pgce-qts/assessment-only-essex-southend-thurrock/" + name: "Sarah Sloper" + email: "sarah@ete.org.uk" + telephone: "01268 988580" + international_phone: "+441268988580" + + - header: "Keele and North Staffordshire Teacher Education" + link: "https://www.knste.set.org/assessment-only-route" + name: "KNSTE" + email: "knste.ao@knste.set.org" + telephone: "01782 948280" + international_phone: "+441782948280" + + - header: "Nottingham Trent University" + link: "https://www.ntu.ac.uk/course/education/pr/assessment-only-route-to-qts-secondary" + name: "Jamie Tinney" + email: "AssessmentOnly@ntu.ac.uk" + telephone: "0115 848 2666" + international_phone: "+441158482666" + + - header: "Stockton SCITT" + link: "https://stocktonscitt.uk/assessment-only-route-to-qts/" + name: "Kirsten Webber" + email: "scitt@stockton.gov.uk" + telephone: "01642 527675" + international_phone: "+441642527675" + + - header: "Teaching London: LDBS SCITT" + link: "https://www.teachinglondon.org/ourcourses/assessment-only-route-to-qts/" + name: "Saskia Rossi" + email: "admin@teachinglondon.org" + telephone: "020 7932 1129" + international_phone: "+442079321129" + + - header: "The University of Buckingham" + link: "https://www.buckingham.ac.uk/courses/postgraduate/assessment-only-ao-route-to-qualified-teacher-status-primary-and-secondary" + name: "Shonali Mathur" + email: "shonali.mathur@buckingham.ac.uk" + telephone: "07538 473145" + international_phone: "+447538473145" + East Midlands: providers: - #- header: Bishop Grosseteste University - # link: https://www.bishopg.ac.uk - # name: Enquiries Team - # telephone: 01522 583658 - # email: enquiries@bishopg.ac.uk - - header: CfBT Education Trust SCITT - name: Julie Woolley - telephone: '07919 568841' - email: jwoolley@cfbt.com - - header: Educate Group Initial Teacher Training - link: https://educate-group.co.uk/initial-teacher-training-about-us/ - name: Educate Group HQ - telephone: 01978 281881 - email: aor@educate-group.co.uk - - header: Exchange Teacher Training - link: https://www.exchangeteachertraining.com/wider-offer/assessment-only - name: Rebecca Turner-Loisel - telephone: 0345 145 0075 (option 1) - email: info@exchangeteachertraining.com - - header: Lincolnshire SCITT - link: https://www.lincolnshirescitt.co.uk/aor - name: Nicki Shore - telephone: 01522 889297 - email: scittenquiries@prioryacademies.co.uk - - header: Nottingham Trent University - link: https://www.ntu.ac.uk/ - name: Admissions team - telephone: 0115 848 4200 - email: applications@ntu.ac.uk - - header: The Grand Union Training Partnership - link: https://www.gutp.co.uk/ - name: Kate Martin - telephone: 01327 350284 ext. 251 - email: gutprecruitment@sponne.org.uk - - header: University of Derby - link: https://www.derby.ac.uk/ - name: Jayne Leggott - email: askadmissions@derby.ac.uk + - header: "Ambition Teacher Training" + link: "https://www.ambition.org.uk/programmes/teacher-training/" + name: "Genevieve Field" + email: "TeacherTraining@Ambition.org.uk" + telephone: "020 3846 5828" + international_phone: "+442038465828" + + - header: "Bishop Grosseteste University" + link: "https://www.bgu.ac.uk/courses/assessment-only-route-to-qts-primary-and-secondary" + name: "Chris Davison" + email: "christopher.davison@bishopg.ac.uk" + telephone: "07961 078589" + international_phone: "+447961078589" + + - header: "Exchange Teacher Training" + link: "https://www.exchangeteachertraining.com/wider-offer/assessment-only" + name: "Rebecca Turner-Loisel" + email: "info@exchangeteachertraining.com" + telephone: "03451 450075" + international_phone: "+443451450075" + + - header: "Leicester and Leicestershire SCITT" + link: "https://www.leicestershiresecondaryscitt.org/" + name: "Clare Hearn-Palmer" + email: "chearn-palmer@leicesterscitt.co.uk" + telephone: "0116 254 3187" + international_phone: "+441162543187" + + - header: "Lincolnshire SCITT" + link: "https://www.lincolnshirescitt.co.uk/aor" + name: "Ellie Hextall" + email: "scittenquiries@prioryacademies.co.uk" + telephone: "01522 889297" + international_phone: "+441522889297" + + - header: "The Grand Union Training Partnership" + link: "https://www.gutp.co.uk/index.php/assessment-only" + name: "Ann Pugh" + email: "apugh@sponne.org.uk" + telephone: "01327 350284" + international_phone: "+441327350284" + extension: "ext 7257" + - header: "University of Derby" + link: "https://www.derby.ac.uk/" + name: "Jayne Leggott" + email: "askadmissions@derby.ac.uk" + + + + East of England: + providers: + - header: "Ambition Teacher Training" + link: "https://www.ambition.org.uk/programmes/teacher-training/" + name: "Genevieve Field" + email: "TeacherTraining@Ambition.org.uk" + telephone: "020 3846 5828" + international_phone: "+442038465828" + + - header: "Chiltern Training Group" + link: "https://www.challneyboys.co.uk/" + name: "Karen Bateman" + email: "kbateman@challneyboys.luton.sch.uk" + telephone: "01582 599921" + international_phone: "+441582599921" + + - header: "Exchange Teacher Training" + link: "https://www.exchangeteachertraining.com/wider-offer/assessment-only" + name: "Rebecca Turner-Loisel" + email: "info@exchangeteachertraining.com" + telephone: "03451 450075" + international_phone: "+443451450075" + + - header: "Lincolnshire SCITT" + link: "https://www.lincolnshirescitt.co.uk/aor" + name: "Ellie Hextall" + email: "scittenquiries@prioryacademies.co.uk" + telephone: "01522 889297" + international_phone: "+441522889297" + + - header: "London School of Jewish Studies" + link: "https://www.lsjs.ac.uk/assessment-only.php" + name: "Galia Segal" + email: "galia.segal@lsjs.ac.uk" + + + + - header: "Norfolk Essex and Suffolk Teacher Training (NESTT)" + link: "https://nestt.org.uk/our-programmes/" + name: "Colin Turner" + email: "colin.turner@nestt.org.uk" + telephone: "01473 265080" + international_phone: "+441473265080" + + - header: "Norfolk Teacher Training Centre" + link: "https://www.norfolkttc.org.uk/how-to-apply/assessment-only/" + name: "Lin Goram" + email: "lin.goram@ccn.ac.uk" + telephone: "01603 773708" + international_phone: "+441603773708" + + - header: "The Cambridge Partnership - Meridian Trust ITT" + link: "https://campartnership.org/assessment-only/" + name: "Beverley Collier" + email: "BCollier@pilgrimpartnership.org" + telephone: "01234 907895" + international_phone: "+441234907895" + Greater London: providers: - - header: 2Schools Consortium - link: https://www.2schools.org/assessment-only-route/ - name: Isabella Mora - telephone: '020 8807 6906' - email: training@oakthorpe.enfield.sch.uk - - header: Future Teacher Training (Future Academies) - link: https://www.futureteachertraining.org/ - name: Clare Foster - telephone: 020 7802 3455 - email: enquiries@scitt.futureacademies.org - - header: Goldsmiths, University of London - link: https://www.gold.ac.uk/ - name: Lynsey Salt - telephone: 020 7717 2245 - email: ao@gold.ac.uk - - header: London School of Jewish Studies (LSJS) - link: https://www.lsjs.ac.uk/ - name: Galia Segal - email: galia.segal@lsjs.ac.uk - - header: Kingston University - link: https://www.kingston.ac.uk/postgraduate-course/assessment-only-route-leading-to-qualified-teacher-status/ - name: Marcus Bhargava - telephone: 020 8417 4766 - email: aoenquiries@kingston.ac.uk - - header: London Metropolitan University - link: https://www.londonmet.ac.uk/courses/postgraduate/assessment-only-ao-route-to-qualified-teacher-status---qts---qts/ - name: Maria Dominguez - telephone: 020 7133 2983 - email: assessmentQTS@londonmet.ac.uk - - header: London South Bank University - link: https://www.lsbu.ac.uk - name: Andrew Read - telephone: 020 7815 5444 - email: qtsao@lsbu.ac.uk - - header: 'Teaching London: LDBS SCITT' - link: https://teachinglondon.org - name: Saskia Rossi - telephone: 020 7932 1126 - email: admin@teachinglondon.org - - header: The Havering Teacher Training Partnership - link: https://www.haveringteachertraining.co.uk/ - name: Liz Connell - telephone: '01708 255006' - email: admin@haveringteachertraining.co.uk - - header: The Kemnal Academies Trust (TKAT) SCITT - link: https://scitt.tkat.org/ - name: Jo Fogg - telephone: 020 3740 1808 (option 1) - email: scitt@tkat.org - - header: University of East London - link: https://www.uel.ac.uk/ - name: Bryce Wilby - telephone: 020 8223 6372 - email: b.wilby@uel.ac.uk - - header: University of Greenwich - name: Enquiry Unit - telephone: 020 8331 9000 - email: courseinfo@gre.ac.uk - - header: Wandsworth Primary Schools’ Consortium - link: https://www.beatrixpotterschool.com/our-school/wandsworth-scitt-teacher-training/ - name: Sam Steward - telephone: 020 8772 9528 - email: ssteward@scitt.wandsworth.sch.uk + - header: "2Schools Consortium (Oakthorpe Primary School)" + link: "https://2schools.org/assessment-only-route/" + name: "Isabella Mora" + email: "training@oakthorpe.enfield.sch.uk" + telephone: "020 8807 6906" + international_phone: "+442088076906" + + - header: "Ambition Teacher Training" + link: "https://www.ambition.org.uk/programmes/teacher-training/" + name: "Genevieve Field" + email: "TeacherTraining@Ambition.org.uk" + telephone: "020 3846 5828" + international_phone: "+442038465828" + + - header: "Bournemouth Bay Teacher Training Partnership" + link: "https://bournemouthbay-partnership.com/about-us/" + name: "James Mosley" + email: "J.Mosley@poolehigh.poole.sch.uk" + telephone: "01202 662038" + international_phone: "+441202662038" + + - header: "Bromley Schools' Collegiate" + link: "https://www.bscteach.co.uk/assessment-only-route-to-qts/" + name: "Derek Boyle" + email: "administrator@gradteach.co.uk" + telephone: "020 8300 6566" + international_phone: "+442083006566" + + - header: "Future Teacher Training" + link: "https://www.futureteachertraining.org/Routes/" + name: "Fran Wood" + email: "f.wood@futureacademies.org" + telephone: "020 7802 3455" + international_phone: "+442078023455" + + - header: "Kent & Medway Training (MT)" + link: "https://www.kmtraining.org.uk/assessment-only-route-to-qualified-teacher-status/" + name: "Polly Butterfield-Tracey" + email: "polly.butterfield-tracey@KMTraining.org.uk" + telephone: "07729 611148" + international_phone: "+447729611148" + + - header: "Kingston University" + link: "https://www.kingston.ac.uk/postgraduate-course/assessment-only-route-leading-to-qualified-teacher-status/" + name: "Marcus Bhargava" + email: "aoenquiries@kingston.ac.uk" + telephone: "020 8417 4766" + international_phone: "+442084174766" + + - header: "London Metropolitan University" + link: "https://www.londonmet.ac.uk/courses/postgraduate/assessment-only-ao-route-to-qualified-teacher-status---qts---qts/" + name: "Robert Fonseca" + email: "AssessmentQTS@londonmet.ac.uk" + telephone: "020 7133 2647" + international_phone: "+442071332647" + + - header: "London School of Jewish Studies" + link: "https://www.lsjs.ac.uk/assessment-only.php" + name: "Galia Segal" + email: "galia.segal@lsjs.ac.uk" + + + + - header: "South Farnham SCITT" + link: "https://www.ssfscitt.org.uk/page/?title=Assessment+Only+Route&pid=42" + name: "Ann-Marie Bahaire" + email: "scitt@sfet.org.uk" + telephone: "01252 717408" + international_phone: "+441252717408" + + - header: "Sutton SCITT" + link: "https://www.suttonscitt.org.uk/teacher-training-programmes-surrey/assessment-only" + name: "Rachel Fagan" + email: "rfa@glenthorne.sutton.sch.uk" + telephone: "020 8410 0006" + international_phone: "+442084100006" + + - header: "The Buckingham Partnership SCITT" + link: "https://www.bpscitt.uk/page/?title=Assessment+Only+Route&pid=16" + name: "Olivia Lewis" + email: "olewis@royallatin.org" + telephone: "01280 827316" + international_phone: "+441280827316" + + - header: "The Kemnal Academies Trust (TKAT)" + link: "https://scitt.tkat.org/820/assessment-only-route" + name: "Steve Excell" + email: "steve.excell@scitt.tkat.org" + telephone: "020 3740 1808" + international_phone: "+442037401808" + extension: "(option 1)" + - header: "University of East London" + link: "https://www.uel.ac.uk/" + name: "Bryce Wilby" + email: "b.wilby@uel.ac.uk" + telephone: "020 8223 6372" + international_phone: "+442082236372" + + - header: "Wandsworth Primary Schools' Consortium" + link: "https://www.scitt.co.uk/our-courses/assessment-only-route/" + name: "Sam Steward" + email: "ssteward@scitt.wandsworth.sch.uk" + telephone: "020 3488 2805" + international_phone: "+442034882805" + North East: providers: - - header: Carmel Teacher Training Partnership (CTTP) - link: https://carmelteachertraining.com/ - name: Marielle Thonnart - telephone: 01325 254525 - email: thonnartm@carmel.bhcet.org.uk - - header: Durham University - email: ed.ite@durham.ac.uk - - header: Educate Group Initial Teacher Training - link: https://educate-group.co.uk/initial-teacher-training-about-us/ - name: Educate Group HQ - telephone: 01978 281881 - email: aor@educate-group.co.uk - - header: Exchange Teacher Training - link: https://www.exchangeteachertraining.com/wider-offer/assessment-only - name: Rebecca Turner-Loisel - telephone: 0345 145 0075 (option 1) - email: info@exchangeteachertraining.com - - header: Stockton-on-Tees Teacher Training Partnership - link: https://www.stocktonscitt.uk - name: Kirsten Webber - telephone: 01642 527675 - email: scitt@stockton.gov.uk - - header: University of Sunderland - link: https://www.sunderland.ac.uk/study/short-courses-cpd/assessment-only-route-qts/ - name: Jill Wilkinson - telephone: '0191 5153099' - email: jill.wilkinson@sunderland.ac.uk + - header: "Exchange Teacher Training" + link: "https://www.exchangeteachertraining.com/wider-offer/assessment-only" + name: "Rebecca Turner-Loisel" + email: "info@exchangeteachertraining.com" + telephone: "03451 450075" + international_phone: "+443451450075" + + - header: "University of Sunderland" + link: "https://www.sunderland.ac.uk/study/short-courses-cpd/assessment-only-route-qts/" + name: "Jill Wilkinson" + email: "jill.wilkinson@sunderland.ac.uk" + telephone: "0191 515 3099" + international_phone: "+441915153099" + North West: providers: - - header: Ashton on Mersey SCITT - link: http://aomscitt.co.uk/assessment-only/ - name: Karen Craven - telephone: 0161 973 1179 (ext 2289) - email: karencraven@thedeantrust.co.uk - - header: Bright Futures SCITT - link: https://www.bright-futures.co.uk/professional-development-institute/bright-futures-scitt/our-programmes/assessment-only-route-to-qts-aor/ - name: Hilary Langmead-Jones - email: admin@scitt.bright-futures.co.uk - - header: Educate Group Initial Teacher Training - link: https://educate-group.co.uk/initial-teacher-training-about-us/ - name: Educate Group HQ - telephone: 01978 281881 - email: aor@educate-group.co.uk - - header: Kingsbridge EIP SCITT - name: Gail Thomson - telephone: '01942 510712 ext 500' - email: g.thomson@kingsbridgeeip.co.uk - - header: Mersey Boroughs ITT Partnership - link: https://merseyitt.org.uk/ - name: Gill Makin - telephone: 0151 443 2663 - email: merseyboroughsitt@knowsley.gov.uk - - header: Prestolee SCITT - link: https://www.prestoleescitt.org.uk/assessment-only-qts - name: Lynsey Smith - telephone: 0161 843 6362 - email: training@prestoleescitt.org.uk - - header: University of Chester - link: https://www.chester.ac.uk/ - name: Jane Bulkeley - email: qtsonlyroute@chester.ac.uk - - header: University of Cumbria - link: https://www.cumbria.ac.uk/study/academic-departments/institute-of-education/qts-direct-assessment-only-route/ - name: Ian Todd - email: qtsdirect@cumbria.ac.uk + - header: "Ambition Teacher Training" + link: "https://www.ambition.org.uk/programmes/teacher-training/" + name: "Genevieve Field" + email: "TeacherTraining@Ambition.org.uk" + telephone: "020 3846 5828" + international_phone: "+442038465828" + + - header: "Ashton on Mersey SCITT" + link: "https://aomscitt.co.uk/programmes/assessment-only/" + name: "Karen Craven" + email: "karencraven@thedeantrust.co.uk" + telephone: "0161 973 1179" + international_phone: "+441619731179" + extension: "ext 2289" + - header: "Bright Futures SCITT" + link: "https://www.bright-futures.co.uk/pdi/bright-futures-scitt/our-programmes/assessment-only-route-to-qts-aor/" + name: "Hilary Langmead-Jones" + email: "admin@scitt.bright-futures.co.uk" + telephone: "07549 025620" + international_phone: "+447549025620" + + - header: "Kingsbridge EIP SCITT" + + name: "Gail Thomson" + email: "g.thomson@kingsbridgeeip.co.uk" + telephone: "01942 510712" + international_phone: "+441942510712" + extension: "ext 500" + - header: "London School of Jewish Studies" + link: "https://www.lsjs.ac.uk/assessment-only.php" + name: "Galia Segal" + email: "galia.segal@lsjs.ac.uk" + + + + - header: "Mersey Boroughs ITT Partnership" + link: "https://merseyitt.org.uk/courses/assessment-only/" + + email: "merseyboroughsitt@knowsley.gov.uk" + telephone: "0151 443 2663" + international_phone: "+441514432663" + + - header: "Prestolee SCITT" + link: "https://www.prestoleescitt.org.uk/assessment-only-qts" + name: "Lynsey Smith" + email: "training@prestoleescitt.org.uk" + telephone: "0161 843 6362" + international_phone: "+441618436362" + South East: providers: - - header: Astra School Centred Initial Teacher Training / Dr Challoner's Grammar - School - link: https://www.astra-alliance.com/285/the-assessment-only-route - name: Andrew Millar - telephone: '01494 787573' - email: hello@astra-alliance.com - - header: Boleyn Trust - link: https://www.londondistricteast.org/scitt - email: elascitt@tollgate.boleyntrust.org - - header: Canterbury Christ Church University - name: Keith Saunders - telephone: 01227 925555 - email: pgadmissions@canterbury.ac.uk - - header: Chepping View Primary Academy SCITT - name: Hayley Rouse - telephone: 01494 535564, option 3 - email: scitt@cvpa.school - - header: George Abbot SCITT - link: https://georgeabbottraining.co.uk/courses/ - name: Joanna Jones - telephone: '01483 888070' - email: contactscitt@georgeabbot.surrey.sch.uk - - header: i2i Teaching Partnership SCITT - link: https://www.i2ipartnership.co.uk/ - name: Krissy Taylor - telephone: '01252 900550' - email: ktaylor@i2ipartnership.co.uk - - header: Kent and Medway Training - link: https://www.kmtraining.org.uk/ - email: polly.butterfield-tracey@kmtraining.org.uk - - header: Surrey South Farnham SCITT - name: Eukaria Finch - telephone: 01252 717408 - email: scitt@sfet.org.uk - - header: The Buckingham Partnership - link: https://www.bpscitt.uk/ - name: Katy Field - telephone: '01280 852039' - email: kfield@bpscitt.uk - - header: The Grand Union Training Partnership - link: https://www.gutp.co.uk/ - name: Kate Martin - telephone: 01327 350284 ext. 251 - email: gutprecruitment@sponne.org.uk - - header: The Tommy Flowers SCITT (Primary) - link: https://tommyflowersscitt.co.uk/assessment-only/ - telephone: '01908 669735 (ext 320)' - email: TFSCITTprimary@denbigh.net - - header: The Tommy Flowers SCITT (Secondary) - link: https://tommyflowersscitt.co.uk/assessment-only/ - telephone: '01908 669735 (ext 353)' - email: TFSCITTsecondary@denbigh.net - - header: The University of Buckingham - link: https://www.buckingham.ac.uk/ - name: Bethany Kelly - telephone: '01280 820222' - email: education@buckingham.ac.uk - - header: Two Mile Ash ITT Partnership - link: https://www.mkitt.co.uk/ - name: Sarah Hand - telephone: '01908 533284' - email: info@mkitt.co.uk - - header: University of Reading - link: https://www.reading.ac.uk/education/pgce-qts-and-eyts/assessment-only - # name: Marc Jacobs - telephone: '0118 378 2672' - email: vrs17a3@reading.ac.uk - - header: University of Sussex - link: https://www.sussex.ac.uk/education/ite/assessmentonly - name: Mike Lambert / Diane Carr - email: AOQTS@sussex.ac.uk - - header: West Berkshire Training Partnership - name: Emmeline Bird - telephone: 01635 42155 - email: admin@itt-westberks.org - - header: Xavier Catholic Education Trust - link: https://www.teachsoutheast.co.uk/ - name: Joanna Crome - telephone: '01932 578682' - email: j.crome@xaviercet.org.uk + - header: "Ambition Teacher Training" + link: "https://www.ambition.org.uk/programmes/teacher-training/" + name: "Genevieve Field" + email: "TeacherTraining@Ambition.org.uk" + telephone: "020 3846 5828" + international_phone: "+442038465828" + + - header: "Astra SCITT" + link: "https://www.astra-alliance.com/562/assessment-only-route-to-qts" + name: "Thahera Konkader" + email: "ao@astra-alliance.com" + telephone: "01494 787573" + international_phone: "+441494787573" + + - header: "Bournemouth Bay Teacher Training Partnership" + link: "https://bournemouthbay-partnership.com/about-us/" + name: "James Mosley" + email: "J.Mosley@poolehigh.poole.sch.uk" + telephone: "01202 662038" + international_phone: "+441202662038" + + - header: "Bromley Schools' Collegiate" + link: "https://www.bscteach.co.uk/assessment-only-route-to-qts/" + name: "Derek Boyle" + email: "administrator@gradteach.co.uk" + telephone: "020 8300 6566" + international_phone: "+442083006566" + + - header: "Canterbury Christ Church University" + + name: "Keith Saunders" + email: "pgadmissions@canterbury.ac.uk" + telephone: "01227 925555" + international_phone: "+441227925555" + + - header: "Inspiring Futures Partnership Trust" + link: "https://cheppingviewscitt.com/Entry-Criteria/" + name: "Nicky Stephenson" + email: "nstephenson@cvpa.school" + telephone: "01494 535564" + international_phone: "+441494535564" + extension: "(option 3)" + - header: "Kent & Medway Training (MT)" + link: "https://www.kmtraining.org.uk/assessment-only-route-to-qualified-teacher-status/" + name: "Polly Butterfield-Tracey" + email: "polly.butterfield-tracey@KMTraining.org.uk" + telephone: "07729 611148" + international_phone: "+447729611148" + + - header: "London School of Jewish Studies" + link: "https://www.lsjs.ac.uk/assessment-only.php" + name: "Galia Segal" + email: "galia.segal@lsjs.ac.uk" + + + + - header: "South Farnham SCITT" + link: "https://www.ssfscitt.org.uk/page/?title=Assessment+Only+Route&pid=42" + name: "Ann-Marie Bahaire" + email: "scitt@sfet.org.uk" + telephone: "01252 717408" + international_phone: "+441252717408" + + - header: "Sutton SCITT" + link: "https://www.suttonscitt.org.uk/teacher-training-programmes-surrey/assessment-only" + name: "Rachel Fagan" + email: "rfa@glenthorne.sutton.sch.uk" + telephone: "020 8410 0006" + international_phone: "+442084100006" + + - header: "The Buckingham Partnership SCITT" + link: "https://www.bpscitt.uk/page/?title=Assessment+Only+Route&pid=16" + name: "Olivia Lewis" + email: "olewis@royallatin.org" + telephone: "01280 827316" + international_phone: "+441280827316" + + - header: "The Kemnal Academies Trust (TKAT)" + link: "https://scitt.tkat.org/820/assessment-only-route" + name: "Steve Excell" + email: "steve.excell@scitt.tkat.org" + telephone: "020 3740 1808" + international_phone: "+442037401808" + extension: "(option 1)" + - header: "Tommy Flowers SCITT" + link: "https://tommyflowersscitt.co.uk/courses/assessment-only/" + name: "Tom Molloy" + email: "tom.molloy@st-pauls.org.uk" + telephone: "01908 669735" + international_phone: "+441908669735" + + - header: "University of Reading" + link: "https://www.reading.ac.uk/education/pgce-qts-and-eyts/assessment-only" + name: "Harvey Grout" + email: "h.grout@reading.ac.uk" + telephone: "0118 378 7237" + international_phone: "+441183787237" + + - header: "i2i Teaching Partnership SCITT" + link: "https://www.i2ipartnership.co.uk/" + name: "Krissy Taylor" + email: "ktaylor@i2ipartnership.co.uk" + telephone: "01252 900550" + international_phone: "+441252900550" + South West: providers: - - header: Bath Spa University - name: Fiona Hunt - email: assessmentonly@bathspa.ac.uk - - header: Bournemouth Bay Teacher Training Partnership - link: https://bournemouthbay-partnership.com/ - name: James Mosley - telephone: 01202 662038 - email: j.mosley@poolehigh.poole.sch.uk - - header: Cornwall School Centred Initial Teacher Training (Cornwall SCITT) - link: https://www.cornwallscitt.org/ - name: Lex Blake - telephone: '01872 305728' - email: scitt@truro-penwith.ac.uk - - header: Gloucestershire Initial Teacher Education Partnership - link: https://gitep.org.uk/ - name: Becky Rose - telephone: '01242 505945' - email: admin@gitep.org.uk - - header: Mid Somerset Consortium for Teacher Training - link: https://www.mscitt.org.uk/Routes/Assessment-only/ - name: Sarah Lewis - telephone: '01458 449418' - email: office@mscitt.org.uk - - header: Somerset SCITT Consortium - link: https://www.sciltraining.co.uk - name: Julie Walker - telephone: 0300 123 1967 - email: JLWalker@somerset.gov.uk - - header: South West Teacher Training - link: https://www.swtt.net/ - name: Carrie McMillan - telephone: 01392 686165 - email: swtt@westexe.devon.sch.uk + - header: "Bournemouth Bay Teacher Training Partnership" + link: "https://bournemouthbay-partnership.com/about-us/" + name: "James Mosley" + email: "J.Mosley@poolehigh.poole.sch.uk" + telephone: "01202 662038" + international_phone: "+441202662038" + + - header: "Cornwall School Centred Initial Teacher Training (Cornwall SCITT)" + link: "https://www.cornwallscitt.org/" + name: "Lex Blake" + email: "scitt@truro-penwith.ac.uk" + telephone: "01872 305728" + international_phone: "+441872305728" + + - header: "Gloucestershire Initial Teacher Education Partnership" + + name: "Becky Rose" + email: "admin@gitep.org.uk" + telephone: "01242 505945" + international_phone: "+441242505945" + + - header: "Mid Somerset Consortium for Teacher Training" + link: "https://mscitt.org.uk/about/our-programme/" + name: "Sarah Lewis" + email: "office@mscitt.org.uk" + telephone: "01458 449418" + international_phone: "+441458449418" + + - header: "Somerset SCITT" + link: "https://www.sciltraining.co.uk/assessment-only-route-to-qualified-teacher-status-qts/" + name: "Nikki Blake" + email: "SCIL@somerset.gov.uk" + telephone: "0300 123 1967" + international_phone: "+443001231967" + + - header: "University of Reading" + link: "https://www.reading.ac.uk/education/pgce-qts-and-eyts/assessment-only" + name: "Harvey Grout" + email: "h.grout@reading.ac.uk" + telephone: "0118 378 7237" + international_phone: "+441183787237" + West Midlands: providers: - - header: Birmingham City University - link: https://www.bcu.ac.uk/ - name: Programme Leader - telephone: 0121 331 4627 - email: assessmentonlyqts@bcu.ac.uk - - header: Bishop Challoner Training School - link: https://www.bctsa.org/1299/assessment-only-qts - name: Emily Giubertoni - telephone: 07714 672398 - email: e.giubertoni@bishopchalloner.bham.sch.uk - - header: Educate Group Initial Teacher Training - link: https://educate-group.co.uk/initial-teacher-training-about-us/ - name: Educate Group HQ - telephone: 01978 281881 - email: aor@educate-group.co.uk - - header: Haybridge Alliance SCITT - link: https://www.teachwithhaybridge.co.uk - email: tforward@haybridge.worcs.sch.uk - - header: Keele and North Staffordshire Teacher Education - link: https://knste-shaw.org.uk/assessment-only-route - telephone: '01782 432537' - email: ao@knste-shaw.org.uk - - header: St. Joseph's College Stoke Secondary Partnership - link: http://www.stjosephstrentvale.com/teaching-school/partnership/ - email: schater@stjosephsmail.com - - header: Staffordshire University - link: https://www.staffs.ac.uk/ - name: Jayne Bartrop - telephone: '01782 295977' - email: J.Bartrop@staffs.ac.uk - - header: The OAKS (Ormiston and Keele SCITT) - name: Rob Tweats - telephone: '01782 734332' - email: r.tweats@keele.ac.uk - - header: Titan Partnership Ltd - link: https://www.titanteachertraining.co.uk/itt-courses/assessment-only/ - name: Sean Bates - telephone: 0121 607 1930 - email: sean.bates@titan.org.uk - - header: University College Birmingham - link: https://www.ucb.ac.uk/home.aspx - name: Dr. Marj Jeavons - email: m.jeavons@ucb.ac.uk - - header: University of Wolverhampton – primary - link: https://www.wlv.ac.uk/ - email: AOPrimary@wlv.ac.uk - - header: University of Wolverhampton – secondary - link: https://www.wlv.ac.uk/ - email: AOSecondary@wlv.ac.uk - - header: West Midlands Consortium - link: https://wmc.ttsonline.net/ - name: Su Plant - telephone: '01952 200000' - email: ssplant@ttsonline.net + - header: "Ambition Teacher Training" + link: "https://www.ambition.org.uk/programmes/teacher-training/" + name: "Genevieve Field" + email: "TeacherTraining@Ambition.org.uk" + telephone: "020 3846 5828" + international_phone: "+442038465828" + + - header: "Arthur Terry SCITT" + link: "https://arthurterryteachingschool.atlp.org.uk/train-to-teach/assessment-only-qts/" + name: "Cathryn Mortimer" + email: "cmortimer@atlp.org.uk" + telephone: "0121 323 1128" + international_phone: "+441213231128" + + - header: "Barr Beacon SCITT" + link: "https://www.careerinteaching.co.uk/assessment-only/" + name: "Michael Eszrenyi" + email: "meszrenyi@matrixacademytrust.co.uk" + telephone: "0121 366 6600" + international_phone: "+441213666600" + + - header: "Birmingham City University" + link: "https://www.bcu.ac.uk/" + name: "Programme Leader" + email: "assessmentonlyqts@bcu.ac.uk" + telephone: "0121 331 4627" + international_phone: "+441213314627" + + - header: "Bishop Challoner Training School" + link: "https://www.bctsa.org/1299/assessment-only-qts" + name: "Emily Giubertoni" + email: "e.giubertoni@bishopchalloner.bham.sch.uk" + telephone: "07714 672398" + international_phone: "+447714672398" + + - header: "Haybridge SCITT" + link: "https://www.teachwithhaybridge.co.uk/our-programmes/assessment-only/assessment-only-route/" + name: "Nick Raggett" + email: "nraggett@haybridge.worcs.sch.uk" + telephone: "01562 886213" + international_phone: "+441562886213" + + - header: "Staffordshire University" + link: "https://www.staffs.ac.uk/" + name: "Jayne Bartrop" + email: "J.Bartrop@staffs.ac.uk" + telephone: "01782 295977" + international_phone: "+441782295977" + + - header: "University of Wolverhampton" + link: "https://www.wlv.ac.uk/schools-and-institutes/faculty-of-education-health-and-wellbeing/school-of-education/teacher-training/employment-based-routes/assessment-only-qts-programme/" + name: "Susan Giacoletto" + email: "s.giacoletto@wlv.ac.uk" + telephone: "07813 976274" + international_phone: "+447813976274" + extension: "(Diana Bannister)" + - header: "West Midlands Consortium" + link: "https://wmc.ttsonline.net/page/assessment-only.aspx" + name: "Su Plant" + email: "ssplant@ttsonline.net" + telephone: "01952 200000" + international_phone: "+441952200000" + Yorkshire and the Humber: providers: - - header: Educate Group Initial Teacher Training - link: https://educate-group.co.uk/initial-teacher-training-about-us/ - name: Educate Group HQ - telephone: 01978 281881 - email: aor@educate-group.co.uk - - header: Exchange Teacher Training - link: https://www.exchangeteachertraining.com/wider-offer/assessment-only - name: Rebecca Turner-Loisel - telephone: 0345 145 0075 (option 1) - email: info@exchangeteachertraining.com - - header: GORSE SCITT - link: https://gorsescitt.org.uk/ - name: Emma Worrincy - telephone: '0113 487 1777' - email: info@gorsescitt.org.uk - - header: Leeds Trinity University - link: https://www.leedstrinity.ac.uk/courses/cpd-and-short-courses/assessment-only/ - name: Admissions - telephone: 0113 283 7123 - email: admissions@leedstrinity.ac.uk - - header: North Lincolnshire SCITT Partnership - name: Vicky Crossley - telephone: 01724 297119 - email: vicky.crossley@northlincs.gov.uk - - header: The Sheffield SCITT - link: https://www.sheffieldscitt.org.uk/ - email: admin@sheffieldscitt.org.uk - National: - providers: - - header: TES Institute - link: https://www.tes.com/institute/assessment-only-route - name: Andrew Locke - telephone: 020 3194 3200 - email: institute@tesglobal.com + - header: "Ambition Teacher Training" + link: "https://www.ambition.org.uk/programmes/teacher-training/" + name: "Genevieve Field" + email: "TeacherTraining@Ambition.org.uk" + telephone: "020 3846 5828" + international_phone: "+442038465828" + + - header: "Exchange Teacher Training" + link: "https://www.exchangeteachertraining.com/wider-offer/assessment-only" + name: "Rebecca Turner-Loisel" + email: "info@exchangeteachertraining.com" + telephone: "03451 450075" + international_phone: "+443451450075" + + - header: "GORSE SCITT" + link: "https://gorsescitt.org.uk/" + name: "Nicci Cornfoot" + email: "info@gorsescitt.org.uk" + telephone: "0113 487 1777" + international_phone: "+441134871777" + + - header: "Leeds Trinity University" + link: "https://www.leedstrinity.ac.uk/courses/cpd-and-short-courses/assessment-only/" + name: "Helen Bromley" + email: "h.bromley@leedstrinity.ac.uk" + telephone: "0113 283 7100" + international_phone: "+441132837100" + + - header: "North Lincolnshire SCITT Partnership" + link: "https://www.northlincs.gov.uk/schools-libraries-and-learning/train-to-teach-in-north-lincolnshire/" + name: "Vicky Crossley" + email: "vicky.crossley@northlincs.gov.uk" + telephone: "01724 297119" + international_phone: "+441724297119" + + - header: "Red Kite Teacher Training" + link: "https://www.redkiteteachertraining.co.uk/our-programmes/assessment-only/" + name: "Diana Frost" + email: "FrostD@rklt.co.uk" + telephone: "01423 535646" + international_phone: "+441423535646" + + - header: "St Edmunds Nursery and Children Centre (Bradford Birth to 19 SCITT)" + link: "https://www.bradfordbirthto19scitt.co.uk/home" + name: "Ben McGregor" + email: "ben.mcgregor@bradfordbirthto19.org" + telephone: "01274 494898" + international_phone: "+441274494898" + + - header: "The Sheffield SCITT" + link: "https://www.sheffieldscitt.org.uk/" + + email: "admin@sheffieldscitt.org.uk" + + + Non-UK: description: content/train-to-be-a-teacher/assessment-only-route-to-qts/descriptions/teacher-training-providers-offering-assessment-only-qts-to-international-teachers providers: - - header: Buckingham International School of Education - link: https://www.bise.org - name: Admissions Team - telephone: +86 135 2015 3752 - email: admissions@bise.org - - header: Educational Success Partners (ESP) - link: https://www.espeducation.co.uk/ao-route - name: Mark Bignell - email: mark@espeducation.co.uk - - header: University of Derby - link: https://www.derby.ac.uk/ - name: Jayne Leggott - email: askadmissions@derby.ac.uk - - header: University of Sunderland - link: https://www.sunderland.ac.uk/study/short-courses-cpd/assessment-only-route-qts/ - name: Ian Elliott - telephone: 0191 515 2159 - email: ian.elliott@sunderland.ac.uk + - header: "Ambition Teacher Training" + link: "https://www.ambition.org.uk/programmes/teacher-training/" + name: "Genevieve Field" + email: "TeacherTraining@Ambition.org.uk" + telephone: "020 3846 5828" + international_phone: "+442038465828" + + - header: "Bournemouth Bay Teacher Training Partnership" + link: "https://bournemouthbay-partnership.com/about-us/" + name: "James Mosley" + email: "J.Mosley@poolehigh.poole.sch.uk" + telephone: "01202 662038" + international_phone: "+441202662038" + + - header: "Colchester Teacher Training Consortium" + link: "https://colchesterttc.org.uk/courses" + name: "Christine Wager" + email: "enquiries@colchesterttc.org.uk" + telephone: "01206 364728" + international_phone: "+441206364728" + + - header: "GORSE SCITT" + link: "https://gorsescitt.org.uk/" + name: "Nicci Cornfoot" + email: "info@gorsescitt.org.uk" + telephone: "0113 487 1777" + international_phone: "+441134871777" + + - header: "Inspiring Futures Partnership Trust" + link: "https://cheppingviewscitt.com/Entry-Criteria/" + name: "Nicky Stephenson" + email: "nstephenson@cvpa.school" + telephone: "01494 535564" + international_phone: "+441494535564" + extension: "(option 3)" + - header: "Lincolnshire SCITT" + link: "https://www.lincolnshirescitt.co.uk/aor" + name: "Ellie Hextall" + email: "scittenquiries@prioryacademies.co.uk" + telephone: "01522 889297" + international_phone: "+441522889297" + + - header: "Mersey Boroughs ITT Partnership" + link: "https://merseyitt.org.uk/courses/assessment-only/" + + email: "merseyboroughsitt@knowsley.gov.uk" + telephone: "0151 443 2663" + international_phone: "+441514432663" + + - header: "Norfolk Essex and Suffolk Teacher Training (NESTT)" + link: "https://nestt.org.uk/our-programmes/" + name: "Colin Turner" + email: "colin.turner@nestt.org.uk" + telephone: "01473 265080" + international_phone: "+441473265080" + + - header: "Nottingham Trent University" + link: "https://www.ntu.ac.uk/course/education/pr/assessment-only-route-to-qts-secondary" + name: "Jamie Tinney" + email: "AssessmentOnly@ntu.ac.uk" + telephone: "0115 848 2666" + international_phone: "+441158482666" + + - header: "Sutton SCITT" + link: "https://www.suttonscitt.org.uk/teacher-training-programmes-surrey/assessment-only" + name: "Rachel Fagan" + email: "rfa@glenthorne.sutton.sch.uk" + telephone: "020 8410 0006" + international_phone: "+442084100006" + + - header: "Teaching London: LDBS SCITT" + link: "https://www.teachinglondon.org/ourcourses/assessment-only-route-to-qts/" + name: "Saskia Rossi" + email: "admin@teachinglondon.org" + telephone: "020 7932 1129" + international_phone: "+442079321129" + + - header: "The Buckingham Partnership SCITT" + link: "https://www.bpscitt.uk/page/?title=Assessment+Only+Route&pid=16" + name: "Olivia Lewis" + email: "olewis@royallatin.org" + telephone: "01280 827316" + international_phone: "+441280827316" + + - header: "The Grand Union Training Partnership" + link: "https://www.gutp.co.uk/index.php/assessment-only" + name: "Ann Pugh" + email: "apugh@sponne.org.uk" + telephone: "01327 350284" + international_phone: "+441327350284" + extension: "ext 7257" + - header: "The Kemnal Academies Trust (TKAT)" + link: "https://scitt.tkat.org/820/assessment-only-route" + name: "Steve Excell" + email: "steve.excell@scitt.tkat.org" + telephone: "020 3740 1808" + international_phone: "+442037401808" + extension: "(option 1)" + - header: "The University of Buckingham" + link: "https://www.buckingham.ac.uk/courses/postgraduate/assessment-only-ao-route-to-qualified-teacher-status-primary-and-secondary" + name: "Shonali Mathur" + email: "shonali.mathur@buckingham.ac.uk" + telephone: "07538 473145" + international_phone: "+447538473145" + + - header: "Tommy Flowers SCITT" + link: "https://tommyflowersscitt.co.uk/courses/assessment-only/" + name: "Tom Molloy" + email: "tom.molloy@st-pauls.org.uk" + telephone: "01908 669735" + international_phone: "+441908669735" + + - header: "University of Derby" + link: "https://www.derby.ac.uk/" + name: "Jayne Leggott" + email: "askadmissions@derby.ac.uk" + + + + - header: "University of Reading" + link: "https://www.reading.ac.uk/education/pgce-qts-and-eyts/assessment-only" + name: "Harvey Grout" + email: "h.grout@reading.ac.uk" + telephone: "0118 378 7237" + international_phone: "+441183787237" + + - header: "University of Sunderland" + link: "https://www.sunderland.ac.uk/study/short-courses-cpd/assessment-only-route-qts/" + name: "Ian Elliott" + email: "ian.elliott@sunderland.ac.uk" + telephone: "0191 515 2159" + international_phone: "+441915152159" + + keywords: - Assessment Only - Assessment diff --git a/app/webpacker/styles/components/grouped-cards.scss b/app/webpacker/styles/components/grouped-cards.scss index 15d7a9426f..79be3990ae 100644 --- a/app/webpacker/styles/components/grouped-cards.scss +++ b/app/webpacker/styles/components/grouped-cards.scss @@ -61,6 +61,10 @@ &__fields span:first-child { font-weight: bold; } + + &__fields span.extension { + margin-left: 0.5em; + } } } } diff --git a/lib/assessment_only_provider.rb b/lib/assessment_only_provider.rb new file mode 100644 index 0000000000..5b5f7144b2 --- /dev/null +++ b/lib/assessment_only_provider.rb @@ -0,0 +1,32 @@ +class AssessmentOnlyProvider + attr_reader :provider, :regions, :website, :contact, :email, :phone, :international_phone, :extension + + def initialize(data) + data.tap do |d| + @provider = d[0]&.strip + @regions = d["region"]&.split(/[;,|]+/)&.map(&:strip) + @website = d["website"]&.strip + @contact = d["contact"]&.strip + @email = d["email"]&.strip + @phone = d["phone"]&.strip + @international_phone = d["international_phone"]&.strip + @extension = d["extension"]&.strip + end + end + + def to_h + { + "header" => provider, + "link" => website, + "name" => contact, + "email" => email, + "telephone" => phone, + "international_phone" => international_phone, + "extension" => extension, + } + end + + def to_str + [provider, regions&.join(";"), website, contact, email, phone, international_phone, extension].join("|") + end +end diff --git a/lib/tasks/generate_assessment_only_providers.rake b/lib/tasks/generate_assessment_only_providers.rake new file mode 100644 index 0000000000..10c8f03561 --- /dev/null +++ b/lib/tasks/generate_assessment_only_providers.rake @@ -0,0 +1,28 @@ +require "csv" +require "yaml" +require "assessment_only_provider" + +namespace :assessment_only_providers do + desc "Generate the assessment only providers page" + task generate: :environment do + csv = CSV.read("lib/tasks/support/assessment_only_providers.csv", headers: true) + + provider_groups = csv.each.with_object({}) do |row, h| + next if row[0].blank? || row["region"].blank? + + AssessmentOnlyProvider.new(row).tap do |provider| + provider.regions.each do |region| + h[region] ||= {} + h[region]["providers"] ||= [] + h[region]["providers"] << provider.to_h + end + end + end + + provider_groups = provider_groups.transform_values { |v| v["providers"].sort_by { |a| a["header"] } }.sort_by { |x, _y| [case x when "Non-UK"then 2; when "National" then 0; else 1 end, x] } + + File.open("app/views/content/train-to-be-a-teacher/assessment-only-route-to-qts.md", "w") do |f| + f.write ERB.new(File.read("lib/tasks/support/assessment-only-route-to-qts.md.erb"), trim_mode: "<>").result(binding) + end + end +end diff --git a/lib/tasks/support/assessment-only-route-to-qts.md.erb b/lib/tasks/support/assessment-only-route-to-qts.md.erb new file mode 100644 index 0000000000..da68d577d4 --- /dev/null +++ b/lib/tasks/support/assessment-only-route-to-qts.md.erb @@ -0,0 +1,89 @@ +--- +title: "Assessment only route to QTS" +heading: "Assessment only route to QTS for unqualified teachers" +subcategory: Other routes into teaching +description: |- + Find out about the assessment only route to qualified teacher status (QTS) for unqualified teachers who have worked in a classroom. +date: "2021-06-08" +image: false +backlink: / +promo_content: + - content/train-to-be-a-teacher/promos/adviser-promo-assessment-only +navigation: 20.40 +navigation_title: If you’ve worked as an unqualified teacher +navigation_description: If you've worked as an unqualified teacher, you may be able to get qualified teacher status (QTS) through an assessment only route. +fullwidth: true +content: + - content/train-to-be-a-teacher/assessment-only-route-to-qts/listing + - content/train-to-be-a-teacher/assessment-only-route-to-qts/update-details + +provider_groups: +<% provider_groups.each do |group_name, providers| %> + <%= group_name %>: +<% if group_name =~ /Non-UK/i %> + description: content/train-to-be-a-teacher/assessment-only-route-to-qts/descriptions/teacher-training-providers-offering-assessment-only-qts-to-international-teachers +<% end %> + providers: +<% providers.each do |provider| %> + - header: <%= provider["header"].inspect %> + <% if provider["link"] %>link: <%= provider["link"].inspect %><% end %> + <% if provider["name"] %>name: <%= provider["name"].inspect %><% end %> + <% if provider["email"] %>email: <%= provider["email"].inspect %><% end %> + <% if provider["telephone"] %>telephone: <%= provider["telephone"].inspect %><% end %> + <% if provider["international_phone"] %>international_phone: <%= provider["international_phone"].inspect %><% end %> + <% if provider["extension"] %>extension: <%= provider["extension"].inspect %><% end %> +<% end %> +<% end %> + +keywords: + - Assessment Only + - Assessment + - Provider + - SCITT + - experienced +--- + +If you’ve worked as an unqualified teacher, you may be able to get [qualified teacher status (QTS)](/train-to-be-a-teacher/what-is-qts) through an assessment only programme. + +If you already have QTS, find out how you can [return to teaching](https://teaching-vacancies.service.gov.uk/jobseeker-guides/return-to-teaching-in-england/return-to-teaching/). + +## What is the assessment only route to QTS? + +You can take the assessment only route to QTS if you already meet the standards for qualified teacher status, so do not need any further training. + +Instead, you will undertake a series of assessments. This may include lesson observations, providing a portfolio of evidence to show you meet the teachers’ standards, or written assessments. This will vary by your provider. + +The assessment programme takes up to 12 weeks. + +## How much does assessment only QTS cost? + +Fees range from about $fees_assessmentonly_low$ to $fees_assessmentonly_high$, but vary between provider so it’s best to check with them for more information. + +Fees may be paid by you or your school at the start of the programme. If you’re currently working in a school, talk to your employer about your funding options. + +## Eligibility for assessment only QTS + +To be eligible, you need (all of the following): + +* to be able to show you meet the [teachers' standards](https://www.gov.uk/government/publications/teachers-standards) without any more training +* to have worked in 2 or more schools +* a degree +* GCSEs at grade 4 (C) or above in English and maths (and science if you want to teach primary) + +Specific entry criteria may vary by teacher training provider. You should ask them about eligibility before you apply. + +### If you're a teaching assistant + +If you've worked as a teaching assistant, it's unlikely you'll have the experience required for assessment only. + +There may be exceptional cases where teaching assistants have worked for a significant amount of time (at least 2 years) independently teaching classes and may be eligible. + +Talk to your provider about whether your experience makes you eligible for this route. + +Or, find other ways you can [train to be a teacher](/train-to-be-a-teacher). + +### If you're based overseas or are a non-UK citizen + +If you’re based overseas, you will need to contact a [non-UK assessment only provider](/train-to-be-a-teacher/assessment-only-route-to-qts#group--non-uk). You may also be interested in [international qualified teacher status (iQTS)](/non-uk-teachers/international-qualified-teacher-status). With iQTS, you can train where you live and work, with no need to visit the UK. + +If you’re a non-UK citizen based in the UK, contact one of the regional or national providers listed on this page. diff --git a/lib/tasks/support/assessment_only_providers.csv b/lib/tasks/support/assessment_only_providers.csv new file mode 100644 index 0000000000..d450a3bd3c --- /dev/null +++ b/lib/tasks/support/assessment_only_providers.csv @@ -0,0 +1,65 @@ +provider,website,contact,email,phone,extension,East of England,East Midlands,Greater London,North East,North West,South East,South West,West Midlands,Yorkshire and the Humber,National,Non-UK,international_phone,region, +2Schools Consortium (Oakthorpe Primary School),https://2schools.org/assessment-only-route/,Isabella Mora,training@oakthorpe.enfield.sch.uk,020 8807 6906,,,,Greater London,,,,,,,,,+442088076906,Greater London, +Ambition Teacher Training,https://www.ambition.org.uk/programmes/teacher-training/,Genevieve Field,TeacherTraining@Ambition.org.uk,020 3846 5828,,East of England,East Midlands,Greater London,,North West,South East,,West Midlands,Yorkshire and the Humber,,Non-UK,+442038465828,East of England; East Midlands; Greater London; North West; South East; West Midlands; Yorkshire and the Humber; Non-UK, +Arthur Terry SCITT,https://arthurterryteachingschool.atlp.org.uk/train-to-teach/assessment-only-qts/,Cathryn Mortimer,cmortimer@atlp.org.uk,0121 323 1128,,,,,,,,,West Midlands,,,,+441213231128,West Midlands, +Ashton on Mersey SCITT,https://aomscitt.co.uk/programmes/assessment-only/,Karen Craven,karencraven@thedeantrust.co.uk,0161 973 1179,ext 2289,,,,,North West,,,,,,,+441619731179,North West, +Astra SCITT,https://www.astra-alliance.com/562/assessment-only-route-to-qts,Thahera Konkader,ao@astra-alliance.com,01494 787573,,,,,,,South East,,,,,,+441494787573,South East, +Barr Beacon SCITT,https://www.careerinteaching.co.uk/assessment-only/,Michael Eszrenyi,meszrenyi@matrixacademytrust.co.uk,0121 366 6600,,,,,,,,,West Midlands,,,,+441213666600,West Midlands, +Birmingham City University,https://www.bcu.ac.uk/,Programme Leader,assessmentonlyqts@bcu.ac.uk,0121 331 4627,,,,,,,,,West Midlands,,,,+441213314627,West Midlands, +Bishop Challoner Training School,https://www.bctsa.org/1299/assessment-only-qts,Emily Giubertoni,e.giubertoni@bishopchalloner.bham.sch.uk,07714 672398,,,,,,,,,West Midlands,,,,+447714672398,West Midlands, +Bishop Grosseteste University,https://www.bgu.ac.uk/courses/assessment-only-route-to-qts-primary-and-secondary,Chris Davison,christopher.davison@bishopg.ac.uk,07961 078589,,,East Midlands,,,,,,,,,,+447961078589,East Midlands, +Bournemouth Bay Teacher Training Partnership,https://bournemouthbay-partnership.com/about-us/,James Mosley,J.Mosley@poolehigh.poole.sch.uk,01202 662038,,,,Greater London,,,South East,South West,,,,Non-UK,+441202662038,Greater London; South East; South West; Non-UK, +Bright Futures SCITT,https://www.bright-futures.co.uk/pdi/bright-futures-scitt/our-programmes/assessment-only-route-to-qts-aor/,Hilary Langmead-Jones,admin@scitt.bright-futures.co.uk,07549 025620,,,,,,North West,,,,,,,+447549025620,North West, +Bromley Schools' Collegiate,https://www.bscteach.co.uk/assessment-only-route-to-qts/,Derek Boyle,administrator@gradteach.co.uk,020 8300 6566,,,,Greater London,,,South East,,,,,,+442083006566,Greater London; South East, +Canterbury Christ Church University,,Keith Saunders,pgadmissions@canterbury.ac.uk,01227 925555,,,,,,,South East,,,,,,+441227925555,South East, +Chiltern Training Group,https://www.challneyboys.co.uk/,Karen Bateman,kbateman@challneyboys.luton.sch.uk,01582 599921,,East of England,,,,,,,,,,,+441582599921,East of England, +Colchester Teacher Training Consortium,https://colchesterttc.org.uk/courses,Christine Wager,enquiries@colchesterttc.org.uk,01206 364728,,,,,,,,,,,National,Non-UK,+441206364728,National; Non-UK, +Cornwall School Centred Initial Teacher Training (Cornwall SCITT),https://www.cornwallscitt.org/,Lex Blake,scitt@truro-penwith.ac.uk,01872 305728,,,,,,,,South West,,,,,+441872305728,South West, +Educate Group Initial Teacher Training,https://educate-group.co.uk/assessment-only-route/,Claire King,aor@educate-group.co.uk,07973 286995,,,,,,,,,,,National,,+447973286995,National, +Essex and Thames SCITT,https://etpscitt.co.uk/our-courses-pgce-qts/assessment-only-essex-southend-thurrock/,Sarah Sloper,sarah@ete.org.uk,01268 988580,,,,,,,,,,,National,,+441268988580,National, +Exchange Teacher Training,https://www.exchangeteachertraining.com/wider-offer/assessment-only,Rebecca Turner-Loisel,info@exchangeteachertraining.com,03451 450075,,East of England,East Midlands,,North East,,,,,Yorkshire and the Humber,,,+443451450075,East of England; East Midlands; North East; Yorkshire and the Humber, +Future Teacher Training,https://www.futureteachertraining.org/Routes/,Fran Wood,f.wood@futureacademies.org,020 7802 3455,,,,Greater London,,,,,,,,,+442078023455,Greater London, +Gloucestershire Initial Teacher Education Partnership,,Becky Rose,admin@gitep.org.uk,01242 505945,,,,,,,,South West,,,,,+441242505945,South West, +GORSE SCITT,https://gorsescitt.org.uk/,Nicci Cornfoot,info@gorsescitt.org.uk,0113 487 1777,,,,,,,,,,Yorkshire and the Humber,,Non-UK,+441134871777,Yorkshire and the Humber; Non-UK, +Haybridge SCITT,https://www.teachwithhaybridge.co.uk/our-programmes/assessment-only/assessment-only-route/,Nick Raggett,nraggett@haybridge.worcs.sch.uk,01562 886213,,,,,,,,,West Midlands,,,,+441562886213,West Midlands, +i2i Teaching Partnership SCITT,https://www.i2ipartnership.co.uk/,Krissy Taylor,ktaylor@i2ipartnership.co.uk,01252 900550,,,,,,,South East,,,,,,+441252900550,South East, +Inspiring Futures Partnership Trust,https://cheppingviewscitt.com/Entry-Criteria/,Nicky Stephenson,nstephenson@cvpa.school,01494 535564,(option 3),,,,,,South East,,,,,Non-UK,+441494535564,South East; Non-UK, +Keele and North Staffordshire Teacher Education,https://www.knste.set.org/assessment-only-route,KNSTE,knste.ao@knste.set.org,01782 948280,,,,,,,,,,,National,,+441782948280,National, +Kent & Medway Training (MT),https://www.kmtraining.org.uk/assessment-only-route-to-qualified-teacher-status/,Polly Butterfield-Tracey,polly.butterfield-tracey@KMTraining.org.uk,07729 611148,,,,Greater London,,,South East,,,,,,+447729611148,Greater London; South East, +Kingsbridge EIP SCITT,,Gail Thomson,g.thomson@kingsbridgeeip.co.uk,01942 510712,ext 500,,,,,North West,,,,,,,+441942510712,North West, +Kingston University,https://www.kingston.ac.uk/postgraduate-course/assessment-only-route-leading-to-qualified-teacher-status/,Marcus Bhargava,aoenquiries@kingston.ac.uk,020 8417 4766,,,,Greater London,,,,,,,,,+442084174766,Greater London, +Leeds Trinity University,https://www.leedstrinity.ac.uk/courses/cpd-and-short-courses/assessment-only/,Helen Bromley,h.bromley@leedstrinity.ac.uk,0113 283 7100,,,,,,,,,,Yorkshire and the Humber,,,+441132837100,Yorkshire and the Humber, +Leicester and Leicestershire SCITT,https://www.leicestershiresecondaryscitt.org/,Clare Hearn-Palmer,chearn-palmer@leicesterscitt.co.uk,0116 254 3187,,,East Midlands,,,,,,,,,,+441162543187,East Midlands, +Lincolnshire SCITT,https://www.lincolnshirescitt.co.uk/aor,Ellie Hextall,scittenquiries@prioryacademies.co.uk,01522 889297,,East of England,East Midlands,,,,,,,,,Non-UK,+441522889297,East of England; East Midlands; Non-UK, +London Metropolitan University,https://www.londonmet.ac.uk/courses/postgraduate/assessment-only-ao-route-to-qualified-teacher-status---qts---qts/,Robert Fonseca,AssessmentQTS@londonmet.ac.uk,020 7133 2647,,,,Greater London,,,,,,,,,+442071332647,Greater London, +London School of Jewish Studies,https://www.lsjs.ac.uk/assessment-only.php,Galia Segal,galia.segal@lsjs.ac.uk,,,East of England,,Greater London,,North West,South East,,,,,,,East of England; Greater London; North West; South East, +Mersey Boroughs ITT Partnership,https://merseyitt.org.uk/courses/assessment-only/,,merseyboroughsitt@knowsley.gov.uk,0151 443 2663,,,,,,North West,,,,,,Non-UK,+441514432663,North West; Non-UK, +Mid Somerset Consortium for Teacher Training,https://mscitt.org.uk/about/our-programme/,Sarah Lewis,office@mscitt.org.uk,01458 449418,,,,,,,,South West,,,,,+441458449418,South West, +Norfolk Essex and Suffolk Teacher Training (NESTT),https://nestt.org.uk/our-programmes/,Colin Turner,colin.turner@nestt.org.uk,01473 265080,,East of England,,,,,,,,,,Non-UK,+441473265080,East of England; Non-UK, +Norfolk Teacher Training Centre,https://www.norfolkttc.org.uk/how-to-apply/assessment-only/,Lin Goram,lin.goram@ccn.ac.uk,01603 773708,,East of England,,,,,,,,,,,+441603773708,East of England, +North Lincolnshire SCITT Partnership,https://www.northlincs.gov.uk/schools-libraries-and-learning/train-to-teach-in-north-lincolnshire/,Vicky Crossley,vicky.crossley@northlincs.gov.uk,01724 297119,,,,,,,,,,Yorkshire and the Humber,,,+441724297119,Yorkshire and the Humber, +Nottingham Trent University,https://www.ntu.ac.uk/course/education/pr/assessment-only-route-to-qts-secondary,Jamie Tinney,AssessmentOnly@ntu.ac.uk,0115 848 2666,,,,,,,,,,,National,Non-UK,+441158482666,National; Non-UK, +Prestolee SCITT,https://www.prestoleescitt.org.uk/assessment-only-qts,Lynsey Smith,training@prestoleescitt.org.uk,0161 843 6362,,,,,,North West,,,,,,,+441618436362,North West, +Red Kite Teacher Training,https://www.redkiteteachertraining.co.uk/our-programmes/assessment-only/,Diana Frost,FrostD@rklt.co.uk,01423 535646,,,,,,,,,,Yorkshire and the Humber,,,+441423535646,Yorkshire and the Humber, +Somerset SCITT,https://www.sciltraining.co.uk/assessment-only-route-to-qualified-teacher-status-qts/,Nikki Blake,SCIL@somerset.gov.uk,0300 123 1967,,,,,,,,South West,,,,,+443001231967,South West, +South Farnham SCITT,https://www.ssfscitt.org.uk/page/?title=Assessment+Only+Route&pid=42,Ann-Marie Bahaire,scitt@sfet.org.uk,01252 717408,,,,Greater London,,,South East,,,,,,+441252717408,Greater London; South East, +St Edmunds Nursery and Children Centre (Bradford Birth to 19 SCITT),https://www.bradfordbirthto19scitt.co.uk/home,Ben McGregor,ben.mcgregor@bradfordbirthto19.org,01274 494898,,,,,,,,,,Yorkshire and the Humber,,,+441274494898,Yorkshire and the Humber, +Staffordshire University,https://www.staffs.ac.uk/,Jayne Bartrop,J.Bartrop@staffs.ac.uk,01782 295977,,,,,,,,,West Midlands,,,,+441782295977,West Midlands, +Stockton SCITT,https://stocktonscitt.uk/assessment-only-route-to-qts/,Kirsten Webber,scitt@stockton.gov.uk,01642 527675,,,,,,,,,,,National,,+441642527675,National, +Sutton SCITT,https://www.suttonscitt.org.uk/teacher-training-programmes-surrey/assessment-only,Rachel Fagan,rfa@glenthorne.sutton.sch.uk,020 8410 0006,,,,Greater London,,,South East,,,,,Non-UK,+442084100006,Greater London; South East; Non-UK, +Teaching London: LDBS SCITT,https://www.teachinglondon.org/ourcourses/assessment-only-route-to-qts/,Saskia Rossi,admin@teachinglondon.org,020 7932 1129,,,,,,,,,,,National,Non-UK,+442079321129,National; Non-UK, +The Buckingham Partnership SCITT,https://www.bpscitt.uk/page/?title=Assessment+Only+Route&pid=16,Olivia Lewis,olewis@royallatin.org,01280 827316,,,,Greater London,,,South East,,,,,Non-UK,+441280827316,Greater London; South East; Non-UK, +The Cambridge Partnership - Meridian Trust ITT,https://campartnership.org/assessment-only/,Beverley Collier,BCollier@pilgrimpartnership.org,01234 907895,,East of England,,,,,,,,,,,+441234907895,East of England, +The Grand Union Training Partnership,https://www.gutp.co.uk/index.php/assessment-only,Ann Pugh,apugh@sponne.org.uk,01327 350284,ext 7257,,East Midlands,,,,,,,,,Non-UK,+441327350284,East Midlands; Non-UK, +The Kemnal Academies Trust (TKAT),https://scitt.tkat.org/820/assessment-only-route,Steve Excell,steve.excell@scitt.tkat.org,020 3740 1808,(option 1),,,Greater London,,,South East,,,,,Non-UK,+442037401808,Greater London; South East; Non-UK, +The Sheffield SCITT,https://www.sheffieldscitt.org.uk/,,admin@sheffieldscitt.org.uk,,,,,,,,,,,Yorkshire and the Humber,,,,Yorkshire and the Humber, +The University of Buckingham,https://www.buckingham.ac.uk/courses/postgraduate/assessment-only-ao-route-to-qualified-teacher-status-primary-and-secondary,Shonali Mathur,shonali.mathur@buckingham.ac.uk,07538 473145,,,,,,,,,,,National,Non-UK,+447538473145,National; Non-UK, +Tommy Flowers SCITT,https://tommyflowersscitt.co.uk/courses/assessment-only/,Tom Molloy,tom.molloy@st-pauls.org.uk,01908 669735,,,,,,,South East,,,,,Non-UK,+441908669735,South East; Non-UK, +University of Derby,https://www.derby.ac.uk/,Jayne Leggott,askadmissions@derby.ac.uk,,,,East Midlands,,,,,,,,,Non-UK,,East Midlands; Non-UK, +University of East London,https://www.uel.ac.uk/,Bryce Wilby,b.wilby@uel.ac.uk,020 8223 6372,,,,Greater London,,,,,,,,,+442082236372,Greater London, +University of Reading,https://www.reading.ac.uk/education/pgce-qts-and-eyts/assessment-only,Harvey Grout,h.grout@reading.ac.uk,0118 378 7237,,,,,,,South East,South West,,,,Non-UK,+441183787237,South East; South West; Non-UK, +University of Sunderland,https://www.sunderland.ac.uk/study/short-courses-cpd/assessment-only-route-qts/,Jill Wilkinson,jill.wilkinson@sunderland.ac.uk,0191 515 3099,,,,,North East,,,,,,,,+441915153099,North East, +University of Sunderland,https://www.sunderland.ac.uk/study/short-courses-cpd/assessment-only-route-qts/,Ian Elliott,ian.elliott@sunderland.ac.uk,0191 515 2159,,,,,,,,,,,,Non-UK,+441915152159,Non-UK, +University of Wolverhampton,https://www.wlv.ac.uk/schools-and-institutes/faculty-of-education-health-and-wellbeing/school-of-education/teacher-training/employment-based-routes/assessment-only-qts-programme/,Susan Giacoletto,s.giacoletto@wlv.ac.uk,07813 976274 ,(Diana Bannister),,,,,,,,West Midlands,,,,+447813976274,West Midlands, +Wandsworth Primary Schools' Consortium,https://www.scitt.co.uk/our-courses/assessment-only-route/,Sam Steward,ssteward@scitt.wandsworth.sch.uk,020 3488 2805,,,,Greater London,,,,,,,,,+442034882805,Greater London, +West Midlands Consortium,https://wmc.ttsonline.net/page/assessment-only.aspx,Su Plant,ssplant@ttsonline.net,01952 200000,,,,,,,,,West Midlands,,,,+441952200000,West Midlands, \ No newline at end of file diff --git a/spec/components/grouped_cards/card_component_spec.rb b/spec/components/grouped_cards/card_component_spec.rb index 86d6941353..f1e2d7db5b 100644 --- a/spec/components/grouped_cards/card_component_spec.rb +++ b/spec/components/grouped_cards/card_component_spec.rb @@ -8,7 +8,9 @@ { "header" => "First organisation", "name" => "Joe Bloggs", - "telephone" => "01234 567890 (ext 123)", + "telephone" => "01234 567890", + "international_phone" => "+441234567890", + "extension" => "ext. 123", "email" => "joe.bloggs@first.org", } end @@ -18,6 +20,8 @@ it { is_expected.to have_css ".group__card__fields span", text: "Name" } it { is_expected.to have_css ".group__card__fields span", text: "Joe Bloggs" } it { is_expected.to have_link "joe.bloggs@first.org", href: "mailto:joe.bloggs@first.org" } + it { is_expected.to have_link "01234 567890", href: "tel:+441234567890" } + it { is_expected.to have_css ".group__card__fields span.extension", text: "ext. 123" } it { is_expected.not_to have_css "a h4" } diff --git a/spec/lib/assessment_only_provider_spec.rb b/spec/lib/assessment_only_provider_spec.rb new file mode 100644 index 0000000000..c9357f317d --- /dev/null +++ b/spec/lib/assessment_only_provider_spec.rb @@ -0,0 +1,72 @@ +require "spec_helper" +require "assessment_only_provider" +require "csv" + +describe AssessmentOnlyProvider do + let(:csv) do + CSV.parse("provider,region,website,contact,email,phone,extension,international_phone\nProvider1,Region1;Region2,www.example.com,Someone,test@test.test,01234 56789,1234,+44123456789\n", headers: true) + end + let(:data) do + described_class.new(csv.first) + end + + describe "#provider" do + subject { data.provider } + + it { is_expected.to eql("Provider1") } + end + + describe "#regions" do + subject { data.regions } + + it { is_expected.to match_array(%w[Region1 Region2]) } + end + + describe "#website" do + subject { data.website } + + it { is_expected.to eql("www.example.com") } + end + + describe "#contact" do + subject { data.contact } + + it { is_expected.to eql("Someone") } + end + + describe "#email" do + subject { data.email } + + it { is_expected.to eql("test@test.test") } + end + + describe "#phone" do + subject { data.phone } + + it { is_expected.to eql("01234 56789") } + end + + describe "#international_phone" do + subject { data.international_phone } + + it { is_expected.to eql("+44123456789") } + end + + describe "#extension" do + subject { data.extension } + + it { is_expected.to eql("1234") } + end + + describe "#to_h" do + subject { data.to_h } + + it { is_expected.to eql({ "email" => "test@test.test", "header" => "Provider1", "link" => "www.example.com", "name" => "Someone", "telephone" => "01234 56789", "extension" => "1234", "international_phone" => "+44123456789" }) } + end + + describe "#to_str" do + subject { data.to_str } + + it { is_expected.to eql("Provider1|Region1;Region2|www.example.com|Someone|test@test.test|01234 56789|+44123456789|1234") } + end +end