<table class="table table-striped table-bordered">
  <tbody>
    {% ctx.component.questions.forEach(function(question) { %}
    <tr>
      <th>{{ctx.t(question.label)}}</th>
      <td>
      {% ctx.component.values.forEach(function(item) { %}
        {% if (ctx.value && ctx.value.hasOwnProperty(question.value) && ctx.value[question.value] === item.value) { %}
          {{ctx.t(item.label)}}
        {% } %}
      {% }) %}
      </td>
    </tr>
    {% }) %}
  </tbody>
</table>
