mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2024-11-22 07:52:36 +00:00
25 lines
648 B
Smarty
25 lines
648 B
Smarty
<div>
|
|
<table id="questionResponseTable" class="table table-bordered">
|
|
<tr>
|
|
<th></th>
|
|
<th>
|
|
{$MOD.LBL_QUESTION}
|
|
</th>
|
|
<th>
|
|
{$MOD.LBL_RESPONSE}
|
|
</th>
|
|
</tr>
|
|
{foreach from=$questionResponses item=questionResponse}
|
|
<tr>
|
|
<td>Q{$questionResponse.sort_order+1}</td>
|
|
<td>
|
|
{$questionResponse.questionName}
|
|
</td>
|
|
<td>
|
|
{$questionResponse.answer}
|
|
</td>
|
|
</tr>
|
|
{/foreach}
|
|
</table>
|
|
</div>
|