mirror of
https://github.com/YunoHost-Apps/limesurvey_ynh.git
synced 2024-09-03 19:36:32 +02:00
14 lines
705 B
PHP
14 lines
705 B
PHP
<script type='text/javascript'>
|
|
var graphUrl="<?php echo Yii::app()->getController()->createUrl("admin/statistics/sa/graph"); ?>";
|
|
</script>
|
|
<div id='statsContainer'>
|
|
<div id='statsHeader'>
|
|
<div class='statsSurveyTitle'><?php echo $thisSurveyTitle; ?></div>
|
|
<div class='statsNumRecords'><?php echo $clang->gT("Total records in survey")." : $totalrecords"; ?></div>
|
|
</div>
|
|
<?php if (isset($statisticsoutput) && $statisticsoutput) { echo $statisticsoutput; } ?><br />
|
|
</div>
|
|
<?php
|
|
echo templatereplace(file_get_contents(getTemplatePath(validateTemplateDir($sTemplatePath))."/endpage.pstpl"),array(), $redata);
|
|
?>
|
|
|