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

{{ t('motor_help') }}

{{ t('profile_machines') }}{% if active_company %} · {{ active_company.name }}{% endif %}

{% if rows %}
{% for row in rows %} {% endfor %}
{{ t('machine_no') }} {{ t('company') }} {{ t('motor_hp') }} {{ t('location') }} {{ t('status') }}
{{ row.machine.machine_number }} {{ row.machine.company_name }} {% for m in row.motors %} {{ m.hp|int if m.hp == m.hp|int else m.hp }}HP E {{ m.expected_empty if m.expected_empty is not none else '—' }} / L {{ m.expected_loading if m.expected_loading is not none else '—' }} / O {{ m.expected_overload if m.expected_overload is not none else '—' }} {% endfor %} {{ row.machine.location }} {% if row.health.status == 'ok' %}{{ t('normal') }} {% elif row.health.status == 'watch' %}{{ t('watch') }} {% elif row.health.status == 'alert' %}{{ t('alert') }} {% else %}—{% endif %} {{ t('open_log') }}
{% else %}

{{ t('no_machines') }}

{% endif %} {% endblock %} {% block scripts %} {% endblock %}