{% extends "base.html" %} {% block title %}Dashboard - GWG Intranet{% endblock %} {% block content %}
| Cliente | Cidade | Status |
|---|---|---|
| {{ s.cliente_nome[:30] }}{% if s.cliente_nome|length > 30 %}...{% endif %} | {{ s.cliente_cidade }} | {{ s.status.replace('_', ' ').title() }} |
| Nenhuma solicitação ainda. | ||
| Item | Qtd | Urgência |
|---|---|---|
| {{ s.item_descricao[:25] }}{% if s.item_descricao|length > 25 %}...{% endif %} | {{ s.quantidade }} | {{ s.urgencia.title() }} |
| Nenhuma solicitação ainda. | ||