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

30 lines
754 B
Smarty

<div>
<span class="required validation-message">{$message}</span>
<table id="questionTable" class="table table-bordered">
<tr>
<th>
{$MOD.LBL_SURVEY_QUESTION}
</th>
<th>
{$MOD.LBL_SURVEY_TEXT}
</th>
<th>
{$MOD.LBL_SURVEY_TYPE}
</th>
</tr>
{foreach from=$questions item=question}
<tr>
<td>
Q{$question.sort_order+1}
</td>
<td>
{$question.name}
</td>
<td>
{$question.type}
</td>
</tr>
{/foreach}
</table>
</div>