1{#
2/**
3 * yesnouncertain Html
4 *
5 * @var $sColumns   : the columns, generated with the view columns/col.php
6 * @var $sHeaders   : the headers, generated with the view rows/cell/thead.php
7 * @var $sRows      : the rows, generated with the view rows/answer_row.php
8 * @var $anscount
9 * @var $extraclass
10 * @var $answerwidth
11 *
12 */
13#}
14<!-- Yes/No/Uncertain-->
15<!-- answer -->
16<table class="{{ coreClass }} table table-bordered table-hover" role="group" aria-labelledby="ls-question-text-{{ basename }}">
17    <colgroup class="col-responses">
18        <col class="col-answers"  style='width: {{ answerwidth }}%;' />
19            {# columns/col.twig #}
20            {{ sColumns }}
21    </colgroup>
22    <thead aria-hidden="true">
23        <tr class="ls-heading">
24                {# rows/cell/thead.twig #}
25                {{ sHeaders }}
26        </tr>
27    </thead>
28    <tbody>
29        {% if anscount==0 %}
30            <tr>
31                <th class="answertext">
32
33                    {{ gT('Error: This question has no answers.') }}
34                </th>
35            </tr>
36        {% endif %}
37
38            {# rows/answer_row.php #}
39            {{ sRows }}
40    </tbody>
41</table>
42<!-- end of answer -->
43