Skip to content

Commit

Permalink
feat(bildungsurlaub): Add request info and platform to look for bildu…
Browse files Browse the repository at this point in the history
…ngsurlaub
  • Loading branch information
Agathebadia committed Mar 10, 2024
1 parent 7cf3846 commit c3db248
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 1 deletion.
12 changes: 12 additions & 0 deletions app/routes/home/controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,16 @@ export default class HomeController extends Controller {
get onError() {
return 'An error occurred, please try again';
}

get copyContent() {
let text = document.getElementById('copyTextToClipboard').innerHTML;
const copy = async () => {
try {
await navigator.clipboard.writeText(text);
alert('Content copied to clipboard');
} catch (err) {
alert.error('Failed to copy: ', err);
}
}
}
}
47 changes: 46 additions & 1 deletion app/routes/home/template.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,54 @@ TABLE OF content
<h3>Include complete schema of scenarios</h3>
General scenario of eligibility containing employment status + if already used Bildungsurlaub days, and more
<h3>Schema needs a complete alt text</h3>
<h3>How to apply for Bildungsurlaub</h3>
<h3>Find a Bildungsurlaub</h3>
<p>In the German states with Bildungsurlaub regulations, the common rule is to be employed for at least 6 months, to be eligible for Bildungsurlaub (5 days per year or 10 days every 2 years, see #Entitlement content for details). Also, the education itself must be recognized as Bildungsurlaub in the German state you are working in.</p>

<p>Reminder: If approved, the employer continues to pay the salary of the employee (while attending further education), BUT the course is at the expense of the <em>employee</em>. Depending on the company, and/or the nature of the course, and/or the nature of your work, and the existing rules within your company, the employer can grant an educational budget, which can be used for Bildungsurlaub.</p>

First, you need to find a course or seminar you are interested in.
Here are platform to browse for educations specialised in Bildungsurlaub:
<ul style="list-style: inside">
<li><a class="underline underline-offset-2" href="https://bildungsurlaub.de/">Bildungsurlaub.de</a></li>
<li><a class="underline underline-offset-2" href="https://www.bildungsurlauber.de/courses/">Bildungsurlauber</a></li>
<li><a class="underline underline-offset-2" href="https://www.kursfinder.de/ratgeber/bildungsurlaub-14199">Kursfinder</a></li>
<li><a class="underline underline-offset-2" href="https://www.berlin.de/sen/arbeit/weiterbildung/bildungszeit/suche/">Bildungsurlaub - Official Berlin website</a></li>
</ul>
<h3>List or schema of actions</h3>

Once you have found a course, I recommend you to follow the below steps:

<ul style="list-style: inside">
<li>Before applying, verify if the course is recognized as Bildungurlaub in your state. If the course details are not specifying it, or it is unclear, ask your HR department to help determine it.</li>
<li>Be mindful of the starting date of the education you want to apply to - Ideally you should request approval for Bildungsurlaub at least 6 weeks before the course start. Of course, the earliest, the better.</li>
<li>Usually the approval for Bildungsurlaub is done by the HR department. Make sure you also ask your direct manager if the dates, the duration of the course are also fine {{REWORD}}
</li>
<li>Prepare your request to have your Bildungsurlaub approved (see in the next section)</li>
</ul>
<h3>Create a request for Bildungsurlaub to HR</h3>

<p>You are about the submit a request for a Bildungsurlaub. In order to ease the process, I advise you to prepare the following:</p>
<ul style="list-style: inside">
<li>Have the link to the Bildungsurlaub available</li>
<li>Content of the Bildungsurlaub: Is it a course? A seminar? How many hours per day is dedicated to the education?</li>
<li>Duration of the Bildungsurlaub</li>
<li>Start date and end date of the Bildungsurlaub</li>
</ul>

Ready to submit a request? Let's do it! Here is a template you can use:

<p id="copyTextToClipboard">To the attention of `INSERT DEPARTMENT`:
I would like to request an approval for an educational leave (Bildungsurlaub) between `INSERT STARTING DATE` and `END DATE` (`INSERT EXACT NUMBER OF DAYS` days).
As stated by the `NAME OF THE STATE YOUR ARE WORKING IN` law, as an employee, I'm entitled to days for further education. I would like to use those days for `NAME OF THE COURSE`.
The course consists of:
`INSERT MAIN TOPICS OF THE COURSE`, which corresponds to approximatively to `INSERT HOURS` of courses per `DAY/WEEK`.
Please find attached additional information regarding the course: `INSERT LINK TO THE COURSE AND/OR LINK TO THE SCHOOL`.

I have informed my direct manager of the above request (you can also CC your manager if you are sending the request as an email).


</p>
<button onClick={{this.copyContent}}>Copy to clipboard!</button>
<h3>Copy text in English</h3>
clipboard
{{!-- ember-cli-clipboard TODO: FIX --}}
Expand Down

0 comments on commit c3db248

Please sign in to comment.