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

16 lines
426 B
Text
Raw Permalink Normal View History

2020-08-16 13:26:58 +02:00
extends layout
block content
2020-09-28 15:08:58 +02:00
div.container
2020-08-18 17:10:45 +02:00
label(for="date")=__("date")
2020-08-16 13:26:58 +02:00
input#date(type="date" value=date)
2020-09-28 15:08:58 +02:00
div.container
2020-08-18 17:10:45 +02:00
h1=__("sandwiches")
2020-09-28 15:08:58 +02:00
ul.collection
each sandwich in sandwiches
li.collection-item
div=sandwich.name
a.secondary-content=sandwich.dataValues.number
2020-08-16 13:26:58 +02:00
2020-08-20 14:50:59 +02:00
script(src="/javascripts/sandwiches.js")