mirror of
https://github.com/sstent/node.git
synced 2026-01-25 22:52:07 +00:00
38 lines
1.8 KiB
Plaintext
38 lines
1.8 KiB
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
|
|
ol(id='note_area')
|
|
li(class='note')
|
|
input(type='text', name='note_1', value='note')
|
|
a(style='cursor:pointer;color:blue;', onclick='this.parentNode.parentNode.removeChild(this.parentNode);') Remove Field
|
|
ol(id='exercise_area')
|
|
li(class='exercise')
|
|
input(type='text', name='exercise_1, value='exercise')
|
|
a(style='cursor:pointer;color:blue;', onclick='this.parentNode.parentNode.removeChild(this.parentNode);') Remove Field
|
|
li(id='exercise_target')
|
|
input(type='button', class='AddNeut', value='Add note Field', data-field='note_area', data-area='note_', data-limit='0' )
|
|
input(type='button', class='AddNeut', value='Add exercise Field', data-field='exercise_area', data-area='exercise_', data-limit='0' )
|
|
input(type='submit', id='save', value='Save')
|
|
|
|
li(class='exercise_template')
|
|
input(type='text', name='exercise_1, value='exercise')
|
|
a(style='cursor:pointer;color:blue;', onclick='this.parentNode.parentNode.removeChild(this.parentNode);') Remove Field
|
|
|