SurveyFactory Documentation Documentation HTML or Text Content template variables
HTML or Text Content template variables

Template variables > HTML or Text Content

HTML or Text Content template variables are defined for each question in your survey that is of type HTML or Text Content. If you are looking for template variables for another question type, please see template variables. This page details the structure of the question template variables so you can know what to expect when designing your templates.

question.
   # Variables in common with all content types
   id
   type = 'TextContent'
   sortorder
   incompletion
   inloop[]
   template.

   # Additional variables for HTML or Text Content question types
   content
   content_type

question.

This document assumes that you have the question object in a variable named question. This is most often achieved in a loop, such as:

[% FOREACH question IN survey.questions; %]

or using a custom template function such as getQuestion:

[% question = getQuestion(id); %]