mirror of
https://github.com/welton89/RRBEC.git
synced 2026-04-05 21:45:41 +00:00
29 lines
416 B
HTML
29 lines
416 B
HTML
{% extends "base.html" %}
|
|
{% load static %}
|
|
|
|
|
|
|
|
|
|
{% block 'title' %}
|
|
Comandas{% endblock %}
|
|
{% block 'head' %}
|
|
<link rel="stylesheet" href="{% static 'comandas/css/viewcomanda.css' %}">
|
|
{% endblock %}
|
|
{% block 'body' %}
|
|
|
|
body>
|
|
<div class="grid-container">
|
|
<h4>{{comanda.id}}</h4>
|
|
<h4>{{comanda.name}}</h4>
|
|
<h4>{{comanda.mesa}}</h4>
|
|
<h4>{{comanda.dt_open}}</h4>
|
|
|
|
|
|
|
|
</div>
|
|
</body>
|
|
|
|
|
|
|
|
|
|
{% endblock %} |