{% extends "layout.html" %} {% block content %}

Company Work Policies

Configure company-wide work policies and break time requirements. These settings apply to all employees and ensure compliance with local labor laws.

Regional Presets

Apply predefined work policies based on your country's labor laws. These presets ensure compliance with local regulations.

{% for preset in regional_presets %}

{{ preset.name }}

{{ preset.description }}
{% endfor %}

Custom Configuration

Manually configure work policies for custom requirements. Note: Ensure compliance with local labor laws.

Standard number of work hours per day for full-time employees

Primary Break Requirements

Required break time in minutes (set to 0 to disable)
Work hours after which a break becomes mandatory

Additional Break Requirements

Additional break time for extended work sessions (set to 0 to disable)
Work hours after which an additional break becomes necessary

Current Configuration Summary

Region: {{ work_config.work_region.value }}
Work Day: {{ work_config.standard_hours_per_day }} hours
Break Policy: {% if work_config.mandatory_break_minutes > 0 %} {{ work_config.break_duration_minutes }} minutes after {{ work_config.break_after_hours }} hours {% else %} No mandatory breaks {% endif %}
Additional Break: {% if work_config.additional_break_minutes > 0 %} {{ work_config.additional_break_minutes }} minutes after {{ work_config.additional_break_threshold_hours }} hours {% else %} No additional breaks {% endif %}
Back to Company Settings
{% endblock %}