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

22 lines
866 B
Text

extends layout
block content
div.container
label(for="date")=__("date")
input#date(type="date" value=date)
div.container
h1=__("orders")
each user, department in orders
div.container
h4=department
each orders, name in user
each order, id in orders
ul.collection.with-header
li.collection-header: h5 #{name} - #{__("order")} N°#{id}
each sandwich in order
li.collection-item
div=sandwich.name
a.secondary-content(href="/orders/give?id="+sandwich.SandwichOrder.id)
i.material-icons check
script(src="/javascripts/orders.js")