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
866 B
Text
Raw Permalink Normal View History

2020-08-16 12:48:43 +02:00
extends layout
block content
2020-09-28 15:08:58 +02:00
div.container
2020-08-18 17:13:22 +02:00
label(for="date")=__("date")
2020-08-16 12:48:43 +02:00
input#date(type="date" value=date)
2020-09-28 15:08:58 +02:00
div.container
2020-08-18 17:54:00 +02:00
h1=__("orders")
each user, department in orders
2020-09-28 15:08:58 +02:00
div.container
h4=department
2020-08-18 17:54:00 +02:00
each orders, name in user
2020-09-28 15:08:58 +02:00
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
2020-08-16 12:48:43 +02:00
2020-08-18 17:54:00 +02:00
script(src="/javascripts/orders.js")