Files
bigcapital/packages/server/resources/views/modules/financial-sheet.pug
2024-02-19 21:41:15 +02:00

24 lines
531 B
Plaintext

block head
style
include ../../css/modules/financial-sheet.css
style.
#{customCSS}
block content
.sheet
.sheet__header
.sheet__company-name=organizationName
.sheet__sheet-type=sheetName
.sheet__sheet-date=sheetDate
table.sheet__table
thead
tr
each column in table.columns
th(style=column.style)= column.label
tbody
each row in table.rows
tr(class=row.classNames)
each cell in row.cells
td!= cell.value