Archived
1
0
Fork 0
This repository has been archived on 2024-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
SOD/views/orders.pug

23 lines
726 B
Text
Raw Normal View History

2020-08-16 12:48:43 +02:00
extends layout
block content
div#date-selector.card
label(for="date") Date
input#date(type="date" value=date)
div#orders.card
h1 Orders
each user, department in commands
div.department
h2= department
each command, name in user
div.user
h3= name
each order, id in command
div.order
h4 Command N°#{id}
each sandwich in order
div.sandwich
h4= sandwich.Sandwich.name
script(src="javascripts/orders.js")