{% extends 'base.html' %} {% block title %}Comandas - Sistema de Comandas{% endblock %} {% block content %}

Comandas

Nova Comanda
{% for comanda in comandas %} {% empty %} {% endfor %}
ID Mesa Garçom Status Total Abertura Ações
#{{ 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:"d/m H:i" }} Ver {% if comanda.status == 'aberta' %} Fechar {% endif %}
Nenhuma comanda encontrada.
{% if is_paginated %}
{% if page_obj.has_previous %} Anterior {% endif %} Página {{ page_obj.number }} de {{ page_obj.paginator.num_pages }} {% if page_obj.has_next %} Próxima {% endif %}
{% endif %} {% endblock %}