mirror of
https://github.com/sstent/node.git
synced 2026-01-26 15:12:37 +00:00
28 lines
960 B
Plaintext
28 lines
960 B
Plaintext
#container
|
|
#logo
|
|
img(src='/images/logo.png')
|
|
#display
|
|
include userbar
|
|
|
|
div
|
|
table
|
|
thead
|
|
- each itemfk in fieldkeys
|
|
th= itemfk
|
|
tbody
|
|
-for (var id in items)
|
|
- var item = items[id]
|
|
tr
|
|
- each itemf in fieldkeys
|
|
td= item[itemf]
|
|
|
|
ul#employees
|
|
|
|
form#myForm
|
|
div.clonedInput#input1
|
|
input(type='text', id='employee_name', value='name')
|
|
input(type='text', id='employee_salary', value='salary')
|
|
div
|
|
input(type='button', id='btnAdd', value='add another name')
|
|
input(type='button', id='btnDel', value='remove name')
|
|
input(type='button', id='save', value='Save') |