mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2025-02-15 10:38:46 +00:00
29 lines
700 B
Smarty
29 lines
700 B
Smarty
<div>
|
|
<span class="required validation-message">{$message}</span>
|
|
<table id="questionTable" class="table table-bordered">
|
|
<tr>
|
|
<th>
|
|
Question
|
|
</th>
|
|
<th>
|
|
Text
|
|
</th>
|
|
<th>
|
|
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>
|