1{#
2/**
3 * array 10 point choice 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 $extraclass
9 * @var $answerwidth
10 */
11#}
12<!-- Array 10 point choice -->
13
14<!-- answer -->
15<table class="{{ coreClass }} table table-bordered table-hover table-10-point-array" role="group" aria-labelledby="ls-question-text-{{ basename }}">
16    <!-- Columns -->
17    <colgroup class="col-responses">
18        <col class="col-answers" style='width: {{ answerwidth }}%;' />
19            {# columns/col.php #}
20            {{ sColumns }}
21    </colgroup>
22    <thead aria-hidden="true">
23        <tr class="ls-heading">
24                {# rows/cell/thead.php #}
25                {{ sHeaders }}
26        </tr>
27    </thead>
28    <tbody>
29            {# rows/answer_row.php #}
30            {{ sRows }}
31    </tbody>
32</table>
33
34<!-- end of answer -->
35