63 lines
2.5 KiB
Text
63 lines
2.5 KiB
Text
extends ../../layout
|
|
|
|
block content
|
|
div.card
|
|
h1=__("admin.ordersManagement")
|
|
form#order(method="POST")
|
|
input(type="hidden" name="id" value=order.id)
|
|
div.field
|
|
label(for="department")=__("department") + ":"
|
|
+list("department", "department-list", "department", order.Department.name, "off", true)
|
|
datalist#department-list
|
|
each department in departments
|
|
option(value=department.name)
|
|
|
|
div.field
|
|
label(for="firstname")=__("firstName") + ":"
|
|
input#firstname(type="text" name="firstName" value=order.firstName required)
|
|
div.field
|
|
label(for="lastname")=__("lastName") + ":"
|
|
input#lastname(type="text" name="lastName" value=order.lastName required)
|
|
|
|
div.field
|
|
label(for="username")=__("username")
|
|
+list("username", "usernames", "username", order.User ? order.User.username : "", "off")
|
|
|
|
- i = 0;
|
|
each sandwich in order.Sandwiches
|
|
- i++;
|
|
div.order(id="order"+i)
|
|
h2=__("order") + " " + i
|
|
div.field
|
|
label(for="sandwich"+i)=__("sandwich") + ":"
|
|
+list("#sandwich"+i, "sandwich-list", "sandwiches["+i+"]", sandwich.name, "off", true)
|
|
div.field
|
|
label(for="day"+i)=__("index.day") + ":"
|
|
input(id="#day"+i type="date" name="dates["+i+"]" value=sandwich.SandwichOrder.date required)
|
|
div.field
|
|
label(for="given"+i)=__("admin.given")
|
|
input(id="given"+i type="checkbox" name="give["+i+"]" checked=sandwich.SandwichOrder.give)
|
|
|
|
div#order-action
|
|
a#add-order +
|
|
if i > 1
|
|
a#remove-order -
|
|
else
|
|
a#remove-order.hide -
|
|
|
|
div.field
|
|
label(for="paid")=__("admin.paid")
|
|
input#paid(type="checkbox" name="paid" checked=order.paid)
|
|
|
|
div.field
|
|
input#send(type="submit" value=__("save"))
|
|
|
|
datalist#sandwich-list
|
|
each sandwich in sandwiches
|
|
option(value=sandwich.name)
|
|
datalist#usernames
|
|
each user in users
|
|
option(value=user.username)
|
|
|
|
|
|
script(src="/javascripts/admin/orders/add.js")
|