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

Organization & Masters

Maintain core organization data from the normal business UI with company scoping and audit trail.
{% if can_create_company %}Add Company{% endif %}Company Policies
{% for title,kind,items in master_sections %}{% endfor %}

Companies

{% for x in companies %}{% endfor %}
CodeNameCurrencyAction
{{ x.code }}{{ x.name }}{{ x.currency_code }}Edit {{ x.is_active|yesno:"Deactivate,Reactivate" }}

Branches

Add
{% for x in branches %}{% endfor %}
CompanyCodeName
{{ x.company.code }}{{ x.code }}{{ x.name }}Edit · {{ x.is_active|yesno:"Deactivate,Reactivate" }}

Departments

Add
{% for x in departments %}{% endfor %}
CompanyCodeName
{{ x.company.code }}{{ x.code }}{{ x.name }}Edit · {{ x.is_active|yesno:"Deactivate,Reactivate" }}

Designations

Add
{% for x in designations %}{% endfor %}
CompanyCodeName
{{ x.company.code }}{{ x.code }}{{ x.name }}Edit · {{ x.is_active|yesno:"Deactivate,Reactivate" }}

Shifts

Add
{% for x in shifts %}{% endfor %}
CompanyCodeTimeBreak
{{ x.company.code }}{{ x.code }}{{ x.start_time }}–{{ x.end_time }}{{ x.break_minutes }} minEdit · {{ x.is_active|yesno:"Deactivate,Reactivate" }}

Holidays

Add Holiday
{% for x in holidays %}{% endfor %}
DateCompanyBranchName
{{ x.holiday_date }}{{ x.company.code }}{{ x.branch|default:"All" }}{{ x.name }}Edit · {{ x.is_active|yesno:"Deactivate,Reactivate" }}
{% endblock %}