mirror of
https://github.com/Jermolene/TiddlyWiki5.git
synced 2026-01-20 19:41:32 -08:00
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
40 lines
No EOL
1.5 KiB
Text
40 lines
No EOL
1.5 KiB
Text
caption: Objective
|
|
created: 20150720165104821
|
|
modified: 20150720165123543
|
|
tags: Section
|
|
title: $:/input/ObjectiveInput1
|
|
|
|
\define thisAddObjectiveButton()
|
|
<$button>Add Objective<$action-setfield $tiddler='$:/temp/Objective' title='$:/data/Objective/$(ObjectiveName)$'/><$action-setfield $tiddler='$:/temp/Objective' name='' text=''/></$button>
|
|
\end
|
|
|
|
\define thisSelectObjective()
|
|
<$radio tiddler='$:/settings/$(ThisResume)$/Objective' value={{!!name}}/>
|
|
\end
|
|
|
|
Your objective should very briefly describe the sort of job you are looking for and be phrased in a way that flatters the company you are applying to. Something like 'To gain professional experience with a leader in the field of underwater basket weaving.'
|
|
<br>
|
|
<br>
|
|
You can enter multiple possible objectives and then select the one you want to use on the current resume.
|
|
You can add a new objective or select one that you have already entered (if you have previously entered any).
|
|
<br>
|
|
<br>
|
|
Name:
|
|
<$edit-text tiddler='$:/temp/Objective' field=name class='tc-edit-texteditor' placeholder='Short Name'/>
|
|
|
|
Objective:
|
|
<$edit-text tiddler='$:/temp/Objective' class='tc-edit-texteditor' placeholder='Objective'/>
|
|
|
|
<$vars ThisResume={{$:/settings/Global!!selected_resume}} ObjectiveName={{$:/temp/Objective!!name}}>
|
|
<<thisAddObjectiveButton>>
|
|
|
|
<br>
|
|
Select objective to use:
|
|
|
|
<table>
|
|
<tr><th>Select</th><th>Objective Name</th><th>Objective</th></tr>
|
|
<$list filter='[prefix[$:/data/Objective/]]'>
|
|
<tr><td><<thisSelectObjective>></td><td><$view field='name'/></td><td><$view field='text'/></td></tr>
|
|
</$list>
|
|
</table>
|
|
</$vars> |