Opportunity result

On this page

Overview

Below you can see all the available drops on the events object


Name Description
result.question  
result.answer  
result.children  

 

Snippets

Example of results form:

{% for survey in site.surveys %}
  <h4>Survey</h4>
  {% for opportunity in survey.opportunities %}


    <table class="table">
      {% for result in opportunity.result %}
        
        <tr>
          <td>Question: {{ result.question.text }}</td>
          <td>Answer: {{ result.answer.answer }}</td>
        </tr>
        
        {% for childresult in result.children %}
          <tr style="background: blue;">
            <td>Question: {{ childresult.question.text }}</td>
            <td>Answer: {{ childresult.answer.answer }}</td>
          </tr>
        {% endfor %}
        
      {% endfor %}
    </table>
  
  {% endfor %}

 {% endfor %}

 

Updated: 2020-12-08