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/sandwiches.pug

15 lines
426 B
Text

extends layout
block content
div.container
label(for="date")=__("date")
input#date(type="date" value=date)
div.container
h1=__("sandwiches")
ul.collection
each sandwich in sandwiches
li.collection-item
div=sandwich.name
a.secondary-content=sandwich.dataValues.number
script(src="/javascripts/sandwiches.js")