{% extends 'base.html' %} {% block title %}Registro Diário - Sistema de Comandas{% endblock %} {% block content %}
| ID | Mesa | Garçom | Status | Total | Abertura | Fechamento |
|---|---|---|---|---|---|---|
| #{{ comanda.id }} | Mesa {{ comanda.mesa.numero }} | {{ comanda.garcom.get_full_name|default:comanda.garcom.username }} | {{ comanda.get_status_display }} | R$ {{ comanda.total|floatformat:2 }} | {{ comanda.abertura|date:"H:i" }} | {% if comanda.fechamento %}{{ comanda.fechamento|date:"H:i" }}{% else %}-{% endif %} |
| Nenhuma comanda registrada hoje. | ||||||