1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-06-24 06:13:17 +00:00
TiddlyWiki5/editions/resumebuilder/tiddlers/input/$__input_Skills and Expertise.tid
inmysocks 45bf43d8d0 Added Print button, cleaned up a lot of other minor stuff
Notable changes:

Removed the sidbar tabs other than the resume preview
Fixed ordering problems for the sections in the resume wizard
Fixed some minor display problems in some of the input tiddlers
Updated the documentation a little
2015-07-19 13:04:10 -06:00

31 lines
1.3 KiB
Plaintext

caption: Skills and Expertise
created: 20150719182443671
modified: 20150719182521401
tags: Section
title: $:/input/Skills and Expertise
\define thisAddSkill()
<$action-setfield $tiddler='$:/temp/Skills and Expertise' $field='title' $value="""$:/data/Skills and Expertise/$(ThisSkill)$"""/>
\end
Each of these should be short and descriptive. Just things like 'Advanced Underwater Basket Weaving' or 'Network Information Theory'.
New Skill:
<$edit-text tiddler='$:/temp/Skills and Expertise' field='skill' class='tc-edit-texteditor' placeholder='Skill/Expertise'/>
<$set name=ThisSkill value={{$:/temp/Skills and Expertise!!skill}}>
<$button>
Add Skill
<<thisAddSkill>>
<$action-setfield $tiddler='$:/temp/Skills and Expertise' $field='skill' $value=''/>
</$button>
</$set>
<h2>Current Listing:</h2>
<table style='width:100%'>
<tr><th></th><th>Visible</th><th>Entry</th><th>Order</th></tr>
<$list filter='[prefix[$:/data/Skills and Expertise/]sort[order]]'>
<tr><td><$button class='tc-btn-invisible' message='tm-delete-tiddler' param=<<currentTiddler>>>{{$:/core/images/delete-button}}</$button></td><td><$checkbox tiddler=<<currentTiddler>> field=show checked='true' unchecked=false default=true/></td><td><$view field='skill'/></td><td><$edit-text field=order size=2/></td></tr>
</$list>
</table>