mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 12:50:38 +00:00
feat(server): wip printing financial reports
This commit is contained in:
21
packages/server/resources/views/modules/financial-sheet.pug
Normal file
21
packages/server/resources/views/modules/financial-sheet.pug
Normal file
@@ -0,0 +1,21 @@
|
||||
block head
|
||||
style
|
||||
//- include ../../css/modules/financial-sheet.css
|
||||
|
||||
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= column.label
|
||||
tbody
|
||||
each row in table.rows
|
||||
tr
|
||||
each cell in row.cells
|
||||
td= cell.value
|
||||
Reference in New Issue
Block a user