{% extends "base.html" %} {% block title %}{{ t('companies') }} | {{ app_name }}{% endblock %} {% block content %}

{{ t('companies') }}

{{ ltext('Manage customer organizations and tenant boundaries. / إدارة الشركات وحدود الوصول الخاصة بكل عميل.') }}

{% for company in companies.items %} {% else %} {% endfor %}
{{ ltext('Name / الاسم') }} {{ ltext('Code / الرمز') }} {{ ltext('Contact / التواصل') }} {{ ltext('Status / الحالة') }}
{{ company.name }} {{ company.code }} {{ company.contact_email or '-' }} {{ t('active') if company.is_active else t('inactive') }} {{ t('view') }} {{ t('edit') }}
{{ ltext('No companies configured. / لا توجد شركات.') }}
{% set pagination = companies %} {% include "partials/pagination.html" %}
{% endblock %}