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/admin/orders/date.pug

18 lines
739 B
Text
Raw Permalink Normal View History

2020-08-24 23:23:46 +02:00
extends ../../layout
block content
2020-09-28 22:55:35 +02:00
div.container
2020-08-24 23:23:46 +02:00
h1=__("admin.ordersDate")
2020-09-28 22:55:35 +02:00
div.row
form(action="/admin/orders/date" method="POST")
div.row
div.input-field.col.s6
label(for="firstDate")=__("admin.firstDate")
input#firstDate(type="date" name="firstDate" value=date? date.firstDate: "" required)
div.input-field.col.s6
label(for="lastDate")=__("admin.lastDate")
input#lastDate(type="date" name="lastDate" value=date? date.lastDate: "" required)
div.row
div.input-field.col.s12
+submit(__("save"))