2020-06-26 16:59:54 +02:00
|
|
|
extends layout
|
|
|
|
|
|
|
|
block content
|
2020-08-14 20:08:00 +02:00
|
|
|
div.card
|
|
|
|
h1= title
|
2020-08-18 16:48:09 +02:00
|
|
|
p=__("index.welcome")
|
2020-08-18 17:54:00 +02:00
|
|
|
form#order(action="/order" method="POST")
|
2020-08-14 20:08:00 +02:00
|
|
|
div.field
|
2020-08-18 17:00:07 +02:00
|
|
|
label(for="department")=__("department")+":"
|
2020-08-17 16:54:43 +02:00
|
|
|
input#department(type="list" list="department-list" name="department" value=user ? user.DepartmentName : "" autocomplete="off" required)
|
2020-08-14 20:08:00 +02:00
|
|
|
datalist#department-list
|
2020-08-15 12:55:21 +02:00
|
|
|
each department in departments
|
|
|
|
option(value=department.name)
|
2020-08-14 20:08:00 +02:00
|
|
|
|
|
|
|
div.field
|
2020-08-18 17:00:07 +02:00
|
|
|
label(for="firstname")=__("firstName")+":"
|
2020-08-17 16:54:43 +02:00
|
|
|
input#firstname(type="text" name="firstName" value=user ? user.firstName : "" required)
|
2020-08-14 20:08:00 +02:00
|
|
|
div.field
|
2020-08-18 17:00:07 +02:00
|
|
|
label(for="lastname")=__("lastName")+":"
|
2020-08-17 16:54:43 +02:00
|
|
|
input#lastname(type="text" name="lastName" value=user ? user.lastName : "" required)
|
2020-08-14 20:08:00 +02:00
|
|
|
|
2020-08-18 17:54:00 +02:00
|
|
|
div#order1.order
|
|
|
|
h2=__("order")+" 1"
|
2020-08-14 20:08:00 +02:00
|
|
|
div.field
|
2020-08-20 13:11:25 +02:00
|
|
|
label(for="sandwich1")=__("sandwich")+":"
|
2020-08-18 16:48:09 +02:00
|
|
|
input#sandwich1(type="list" list="sandwich-list" name="sandwich1" autocomplete="off" required)
|
2020-08-14 20:08:00 +02:00
|
|
|
div.field
|
2020-08-18 16:48:09 +02:00
|
|
|
label(for="day1")=__("index.day")+":"
|
2020-08-24 23:23:46 +02:00
|
|
|
input#day1(type="date" min=date ? date.firstDate : "" max=date ? date.lastDate.value : "" name="date1" required)
|
2020-08-14 20:08:00 +02:00
|
|
|
|
2020-08-18 17:54:00 +02:00
|
|
|
div#order-action
|
|
|
|
a#add-order +
|
|
|
|
a#remove-order.hide -
|
2020-08-14 20:08:00 +02:00
|
|
|
|
|
|
|
div.field
|
2020-08-18 16:48:09 +02:00
|
|
|
input#send(type="submit" value=__("index.pay"))
|
2020-08-14 20:08:00 +02:00
|
|
|
|
|
|
|
datalist#sandwich-list
|
2020-08-16 12:48:43 +02:00
|
|
|
each sandwich in sandwiches
|
2020-08-15 12:55:21 +02:00
|
|
|
option(value=sandwich.name)
|
2020-08-15 11:47:36 +02:00
|
|
|
|
2020-08-17 19:19:13 +02:00
|
|
|
script(src="/javascripts/index.js")
|