extends layout
block content
div.container
div.row
h4=__("profile.title")
form(action="/profile" method="POST")
h2=__("profile.infos")
div.input-field.col.s6
input#username(type="text" name="username" value=user.username disabled required)
label(for="username")=__("username")+":"
input#email(type="email" name="email" value=user.email required)
label(for="email")=__("email")+":"
input#firstName(type="text" name="firstName" value=user.firstName required)
label(for="firstName")=__("firstName")+":"
input#lastName(type="text" name="lastName" value=user.lastName required)
label(for="lastName")=__("lastName")+":"
div.input-field.col.s12
select(name="department" required)
each department in departments
option(value=department.name selected=department.name===user.DepartmentName)=department.name
label=__("department")+":"
label(for="password")=__("password")+":"
input#password(type="password" name="password")
div.row.center
+submit(__("save"))
if (!user.emailVerified)
a.btn.waves-effect.waves-light.yellow.darken-4(href="/profile/resend")=__("profile.emailCheck")
div.container.valign-wrapper
h4=__("orders")
each order in orders
div.col
div.card.blue-grey
div.card-content.white-text
span.card-title=order.id
each sandwich in order.Sandwiches
p #{sandwich.name} - #{sandwich.SandwichOrder.date}