|
|
{* $Id$ *}
|
|
|
{title help="Quiz"}{tr}Stats for quizzes{/tr}{/title}
|
|
|
|
|
|
<div class="t_navbar mb-4">
|
|
|
{button href="tiki-list_quizzes.php" class="btn btn-link" _type="link" _icon_name="list" _text="{tr}List Quizzes{/tr}"}
|
|
|
{button href="tiki-edit_quiz.php" class="btn btn-link" _type="link" _icon_name="cog" _text="{tr}Admin Quizzes{/tr}"}
|
|
|
</div>
|
|
|
|
|
|
<h2>{tr}Quizzes{/tr}</h2>
|
|
|
{if $channels}
|
|
|
{include file='find.tpl'}
|
|
|
{/if}
|
|
|
|
|
|
<div class="table-responsive">
|
|
|
<table class="table">
|
|
|
<tr>
|
|
|
<th>
|
|
|
<a href="tiki-quiz_stats.php?offset={$offset}&sort_mode={if $sort_mode eq 'quizName_desc'}quizName_asc{else}quizName_desc{/if}">{tr}Quiz{/tr}</a>
|
|
|
</th>
|
|
|
<th>
|
|
|
<a href="tiki-quiz_stats.php?offset={$offset}&sort_mode={if $sort_mode eq 'timesTaken_desc'}timesTaken_asc{else}timesTaken_desc{/if}">{tr}taken{/tr}</a>
|
|
|
</th>
|
|
|
<th>
|
|
|
<a href="tiki-quiz_stats.php?offset={$offset}&sort_mode={if $sort_mode eq 'avgavg_desc'}avgavg_asc{else}avgavg_desc{/if}">{tr}Av score{/tr}</a>
|
|
|
</th>
|
|
|
<th>
|
|
|
<a href="tiki-quiz_stats.php?offset={$offset}&sort_mode={if $sort_mode eq 'avgtime_desc'}avgtime_asc{else}avgtime_desc{/if}">{tr}Av time{/tr}</a>
|
|
|
</th>
|
|
|
</tr>
|
|
|
|
|
|
{section name=user loop=$channels}
|
|
|
{if ($tiki_p_admin eq 'y') or ($channels[user].individual eq 'n' and $tiki_p_view_quiz_stats eq 'y') or ($channels[user].individual_tiki_p_view_quiz_stats eq 'y')}
|
|
|
<tr>
|
|
|
<td class="text"><a class="tablename" href="tiki-quiz_stats_quiz.php?quizId={$channels[user].quizId}">{$channels[user].quizName|escape}</a></td>
|
|
|
<td class="date">{$channels[user].timesTaken}</td>
|
|
|
<td class="integer">{$channels[user].avgavg}%</td>
|
|
|
<td class="date">{$channels[user].avgtime} secs</td>
|
|
|
</tr>
|
|
|
{/if}
|
|
|
{sectionelse}
|
|
|
{norecords _colspan=4}
|
|
|
{/section}
|
|
|
</table>
|
|
|
</div>
|
|
|
|
|
|
{pagination_links cant=$cant_pages step=$prefs.maxRecords offset=$offset}{/pagination_links}
|