0
0
mirror of https://github.com/salesagility/SuiteCRM.git synced 2024-11-22 07:52:36 +00:00
salesagility_SuiteCRM/modules/SurveyResponses/tpls/detailquestionresponses.tpl
2023-02-23 16:25:46 +00:00

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>