{% extends 'mobile/base.html' %} {% block title %}Início | App{% endblock %} {% block content %}
Início
Olá, {{ request.user.first_name|default:request.user.username }} 👋
Bem-vindo ao App Obra — mesma base do sistema web, aqui no celular.
Obras
Ver obras
Checklist
Canteiro
OS
Minhas ordens
Chat
Suporte + Lia
🕘 Histórico
Ver tudo →
{% for h in historico %}
{{ h.equipamento|slice:":1"|upper }}
{{ h.equipamento }} → {{ h.obra }}
{{ h.get_status_display }} · {{ h.data_retirada|date:"d/m/Y" }} · R$ {{ h.valor }}
{{ h.status }}
{% empty %}
Nenhum histórico ainda.
{% endfor %}
🔔 Alertas
{{ alertas|length }}
{% for a in alertas %}
!
{{ a.title }}
{% if a.message %}{{ a.message|truncatechars:80 }}{% elif a.description %}{{ a.description|truncatechars:80 }}{% else %}{{ a.message|default:"" }}{{ a.description|default:"" }}{% endif %}
{{ a.created_at|date:"d/m H:i"|default:"agora" }}
{% empty %}
Nenhum alerta. Tudo em dia! ✅
{% endfor %}
Falar no chat →
{% endblock %}