Skip to content

Commit

Permalink
Merge pull request #7139 from DFE-Digital/video-transcript
Browse files Browse the repository at this point in the history
Video transcript
  • Loading branch information
KyleMacPherson authored Oct 4, 2024
2 parents 10d521c + 7692977 commit fcb850f
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ You can chat by phone, text or email, as little or as often as you need.

<iframe width="560" height="315" src="https://www.youtube.com/embed/2NrLm_XId4k" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>

[Read a transcript of the video](https://teaching-vacancies.campaign.gov.uk/what-does-a-return-to-teaching-adviser-do-video-transcript)
[Read a transcript of the video](/transcripts/jobseekers/return-to-teaching-video-transcript)

### Eligibility if you qualified outside the UK

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
---
order: 200
title: "What does a Return to Teaching Adviser do?: video transcript"
meta_description: "What does a Return to Teaching Adviser do?: video transcript"
date_posted: 03/10/2024
category_tags: transcript
---

Billy Bone, Return to Teaching Adviser

My role as a Return to Teaching Adviser is to offer one-to-one personal support for teachers who are looking to return to the classroom in certain subjects.

I’m effectively a mentor to the candidates that I support. I offer impartial advice on gaining classroom experience, keeping up to date with the national curriculum and also keeping up to speed with educational developments.

I can also offer you support with searching for job vacancies, writing your personal statement and completing your application form, preparing for your teaching interview and securing that all-important role.

## What experience do Return to Teaching Advisers have?
As a secondary school teacher for 10 years, I really enjoyed helping children with their learning and giving them confidence for the future.

This has now transferred to my career as an adviser and I now look to help returning teachers get back into the classroom so they can start inspiring children again. As a team we have experience teaching a wide range of subjects.

We’ve also taught in a variety of school settings. This means that we’re able to offer you bespoke support depending on your experience and your needs.

## Top tips for returning to teaching
It’s really important to focus on gaining classroom experience and also getting up to speed with the national curriculum, along with educational developments.

You need knowledge of the teaching standards and how you can document this information. It’s important that you can showcase your qualities as a teacher and also demonstrate any transferable skills that you’ve developed that could be utilised within the classroom.

So you might be thinking that you don’t have the confidence to return to teaching, but I’m here to tell you that you definitely can.

Once you gain some valuable classroom experience and you get back into the swing of things, you’ll realise that this is something you can really do and there’s nothing better for me as a Return to Teaching Adviser when you secure a role.

Teaching. Every Lesson Shapes a Life.

Search: Return to Teaching
10 changes: 7 additions & 3 deletions config/routes.rb
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@
Rails.application.routes.url_helpers.post_path(section: "jobseeker-guides", subcategory: "get-help-applying-for-your-teaching-role", post_name: "3-quick-ways-to-find-the-right-teaching-job")
}

get "/transcripts/jobseekers/return-to-teaching-video-transcript", to: redirect { |_params, _request|
Rails.application.routes.url_helpers.post_path(section: "transcripts", subcategory: "jobseekers", post_name: "return-to-teaching-video")
}

if Rails.application.config.maintenance_mode
# If in maintenance mode, route *all* requests to maintenance page
match "*path", to: "errors#maintenance", via: :all
Expand Down Expand Up @@ -275,15 +279,15 @@
get "/pages/*id" => "pages#show", as: :page, format: false

get "/:section" => "posts#index",
constraints: { section: /(jobseeker-guides|get-help-hiring)/ },
constraints: { section: /(jobseeker-guides|get-help-hiring|transcripts)/ },
as: :posts

get "/:section/:subcategory" => "posts#subcategory",
constraints: { section: /(jobseeker-guides|get-help-hiring)/, subcategory: /get-help-applying-for-your-teaching-role|return-to-teaching-in-england|how-to-create-job-listings-and-accept-applications|how-to-setup-your-account/ },
constraints: { section: /(jobseeker-guides|get-help-hiring|transcripts)/, subcategory: /get-help-applying-for-your-teaching-role|return-to-teaching-in-england|how-to-create-job-listings-and-accept-applications|how-to-setup-your-account|jobseekers/ },
as: :subcategory

get "/:section/:subcategory/:post_name" => "posts#show",
constraints: { section: /(jobseeker-guides|get-help-hiring)/, subcategory: /get-help-applying-for-your-teaching-role|return-to-teaching-in-england|how-to-create-job-listings-and-accept-applications|how-to-setup-your-account/, post_name: /[\w-]+/ },
constraints: { section: /(jobseeker-guides|get-help-hiring|transcripts)/, subcategory: /get-help-applying-for-your-teaching-role|return-to-teaching-in-england|how-to-create-job-listings-and-accept-applications|how-to-setup-your-account|jobseekers/, post_name: /[\w-]+/ },
as: :post

get "/list-school-job" => "pages#show", defaults: { id: "list-school-job" }
Expand Down

0 comments on commit fcb850f

Please sign in to comment.