| Server IP : 138.197.176.125 / Your IP : 216.73.216.41 Web Server : Apache/2.4.41 (Ubuntu) System : Linux SuiteCRM-8 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 User : root ( 0) PHP Version : 8.3.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/AppointmentScheduler-Don/modules/Surveys/tpls/Reports/ |
Upload File : |
<div>
<table id="{$question.id}List" style="display: none; width:33%" class="table table-bordered">
<tr>
<th>
{$mod.LBL_RESPONSE_ANSWER}
</th>
<th>
{$mod.LBL_RESPONSE_CONTACT}
</th>
<th>
{$mod.LBL_RESPONSE_TIME}
</th>
</tr>
{foreach from=$question.responses item=response}
<tr>
<td>
{$response.answer}
</td>
<td>
{if $response.contact}
<a href="index.php?module=Contacts&action=DetailView&record={$response.contact.id}">
{$response.contact.name}
</a>
{else}
{$mod.LBL_UNKNOWN_CONTACT}
{/if}
</td>
<td>
{$response.time}
</td>
</tr>
{/foreach}
</table>
<a href="#" class="showHideResponses" data-question-id="{$question.id}">{$mod.LBL_SHOW_RESPONSES}</a>
</div>