mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-01 07:36:18 +00:00
e508b7b765
The spelling for résumé should include the accents everywhere but in some tiddler titles. Newly created resumes now automatically have the default settings for visibility and templates The first page of the resume wizard now has options for which sections are displayed along with the order and templates to use The print option no longer puts a black box around the text area out the output Some temp tiddlers are included to prevent the default 'Enter text for <tiddlername> tiddler' from showing up in some text entry boxes There are some other minor layout improvements
22 lines
950 B
Plaintext
22 lines
950 B
Plaintext
caption: Resume Title
|
|
created: 20150720170858240
|
|
modified: 20150720170900145
|
|
tags: Section
|
|
title: $:/input/Resume Title2
|
|
|
|
\define thisResumeTitleInput()
|
|
<$button>Add Title<$action-setfield $tiddler='$:/temp/ResumeTitle' title='$:/data/ResumeTitle/$(ThisTitle)$'/><$action-setfield $tiddler='$:/temp/ResumeTitle' resume_title=''/></$button>
|
|
<br><br>
|
|
Select title to use:<br>
|
|
<$radio tiddler='$:/settings/$(ThisResume)$/ResumeTitle' value='use name'>Use your name</$radio><br>
|
|
<$list filter='[prefix[$:/data/ResumeTitle/]get[resume_title]]'>
|
|
<$radio tiddler='$:/settings/$(ThisResume)$/ResumeTitle' value=<<currentTiddler>>><$view field='title'/></$radio><br>
|
|
</$list>
|
|
\end
|
|
|
|
Add New Title:
|
|
<$edit-text tiddler='$:/temp/ResumeTitle' field='resume_title' placeholder='Résumé Title' class='tc-edit-texteditor'/>
|
|
|
|
<$vars ThisResume={{$:/settings/Global!!selected_resume}} ThisTitle={{$:/temp/ResumeTitle!!resume_title}}>
|
|
<<thisResumeTitleInput>>
|
|
</$vars> |