-
Notifications
You must be signed in to change notification settings - Fork 120
/
Copy pathcurrent_payment_above.govspeak.erb
29 lines (26 loc) · 1.34 KB
/
current_payment_above.govspeak.erb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<% content_for :body do %>
$C
<% if calculator.what_to_check == 'current_payment_april_2016' && calculator.eligible_for_living_wage? %>
<% if calculator.living_wage_or_above? %>
You will be getting the national living wage
<% else %>
You are getting the National Minimum wage but your pay should be increased to at least the national living wage from 1 April 2016.
<% end %>
<% else %>
You are getting the National Minimum Wage.
<% end %>
$C
<% if calculator.what_to_check == 'current_payment_april_2016' && calculator.eligible_for_living_wage? %>
The national living wage per hour for your age will be | Your actual pay
<% else %>
The National Minimum Wage per hour for your age | Your actual pay
<% end %>
- | -
<% if calculator.what_to_check == 'current_payment_april_2016' && calculator.eligible_for_living_wage? %>
<%= format_money(calculator.national_living_wage_rate) %> | <%= format_money(calculator.total_hourly_rate) %>
<% else %>
<%= format_money(calculator.minimum_hourly_rate) %> | <%= format_money(calculator.total_hourly_rate) %>
<% end %>
If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation.
<%= render partial: '../../shared/minimum_wage/acas_information.govspeak.erb' -%>
<% end %>