These policies are set by your administrator and apply to all employees.
{% if g.user.role == Role.ADMIN %}
Click here to modify these settings.
{% endif %}
Region: {{ company_config.region_name }}
Standard Work Day: {{ company_config.work_hours_per_day }} hours
Break Policy:
{% if company_config.mandatory_break_minutes > 0 %}
{{ company_config.mandatory_break_minutes }} minutes after {{ company_config.break_threshold_hours }} hours
{% else %}
No mandatory breaks
{% endif %}
Additional Break:
{% if company_config.additional_break_minutes > 0 %}
{{ company_config.additional_break_minutes }} minutes after {{ company_config.additional_break_threshold_hours }} hours
{% else %}
No additional breaks
{% endif %}