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.

  1. Go to Performance Appraisal System > Manage Forms

  2. Click on the Edit icon next to the form in question

  3. In the "Form" section, add a "Static" block or edit an existing block

  4. Enter the following in the static block wherever you want the first / last name to appear: {{assignee.firstname}} {{assignee.lastname}}

  5. Click on the "Update" button to save your changes in the static block

  6. 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

Related Articles