{% extends "base.html" %} {% block title %}Equipamentos - Cape System{% endblock %} {% block content %}

Equipamentos

Novo Equipamento
{% if equipamentos %}
{% for eq in equipamentos %} {% endfor %}
Código Nome Tipo Fabricante/Modelo Nº Série Cliente Status Garantia Manutenção Ações
{{ eq.codigo or 'S/C' }} {{ eq.nome }}
{% if eq.categoria %} {{ eq.categoria }} {% endif %}
{{ eq.tipo or '-' }} {% if eq.fabricante %} {{ eq.fabricante }}
{{ eq.modelo or '-' }} {% else %} - {% endif %}
{% if eq.numero_serie %} {{ eq.numero_serie }} {% else %} - {% endif %} {% if eq.pessoa %} {{ eq.pessoa.nome }} {% elif eq.cliente %} {{ eq.cliente.nome }} {% else %} - {% endif %} {% if eq.status == 'ativo' %} Ativo {% elif eq.status == 'manutencao' %} Manutenção {% elif eq.status == 'inativo' %} Inativo {% else %} {{ eq.status }} {% endif %} {% if eq.em_garantia() %} Em garantia {% elif eq.data_garantia %} Vencida {% else %} - {% endif %} {% if eq.precisa_manutencao() %} Urgente {% elif eq.proxima_manutencao %} {{ eq.proxima_manutencao.strftime('%d/%m/%Y') }} {% else %} - {% endif %}

{{ equipamentos|length }} equipamento(s) encontrado(s)

{% else %}
Nenhum equipamento encontrado com os filtros selecionados.
{% endif %}
{% endblock %}