Displaying a User's First and Last Name in an Appraisal Form
When building a performance appraisal form, it is possible to display the user's first and last name in a static block on the form.
Step-by-step Guide
To display the user's first and last name.
Go to Performance Appraisal System > Manage Forms
Click on the Edit icon next to the form in question
In the "Form" section, add a "Static" block or edit an existing block
Enter the following in the static block wherever you want the first / last name to appear: {{assignee.firstname}} {{assignee.lastname}}
Click on the "Update" button to save your changes in the static block
Click on the "Save" button to save the form in its entirety
Important Notes
You can use the same method to display the first / last name of the supervisor who filled out the form. You would use:
Firstname: {{#appraisal.managercompletedby}}{{appraisal.managercompletedby.firstname}}{{/appraisal.managercompletedby}}
Lastname: {{#appraisal.managercompletedby}}{{appraisal.managercompletedby.lastname}}{{/appraisal.managercompletedby}}
If the supervisor has not yet completed the form, the first / last name of the supervisor would not be displayed