mirror of
https://github.com/YunoHost-Apps/limesurvey_ynh.git
synced 2024-09-03 19:36:32 +02:00
19 lines
1.2 KiB
PHP
19 lines
1.2 KiB
PHP
<table class='statisticssummary'>
|
|
<caption class="header ui-widget-header"><?php $clang->eT("Response summary"); ?></caption>
|
|
<tfoot><tr><th><?php $clang->eT("Total responses"); ?></th><td><?php echo $num_total_answers; ?></td></tr></tfoot>
|
|
<tbody>
|
|
<tr><th><?php $clang->eT("Full responses"); ?></th><td><?php echo $num_completed_answers; ?></td></tr>
|
|
<tr><th><?php $clang->eT("Incomplete responses"); ?></th><td><?php echo ($num_total_answers - $num_completed_answers); ?></td></tr>
|
|
</tbody>
|
|
</table>
|
|
<?php if(isset($with_token)){ ?>
|
|
<table class='statisticssummary'>
|
|
<caption class="header ui-widget-header"><?php $clang->eT("Token summary"); ?></caption>
|
|
<tfoot><tr><th><?php $clang->eT("Total records in this token table"); ?></th><td><?php echo $tokeninfo['count']; ?></td></tr></tfoot>
|
|
<tbody>
|
|
<tr><th><?php $clang->eT("Total invitations sent"); ?></th><td><?php echo $tokeninfo['sent']; ?></td></tr>
|
|
<tr><th><?php $clang->eT("Total surveys completed"); ?></th><td><?php echo $tokeninfo['completed']; ?></td></tr>
|
|
<tr><th><?php $clang->eT("Total with no unique Token"); ?></th><td><?php echo $tokeninfo['invalid'] ?></td></tr>
|
|
</tbody>
|
|
</table>
|
|
<?php } ?>
|