0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
14.1-0
/
standard
/
htdocs
/
templates
/
[
Home
]
File: tiki-quiz_stats.tpl
{* $Id: tiki-quiz_stats.tpl 54429 2015-03-16 08:59:16Z chibaguy $ *} {title help="Quiz"}{tr}Stats for quizzes{/tr}{/title} <div class="t_navbar margin-bottom-md"> {button href="tiki-list_quizzes.php" class="btn btn-default" _text="{tr}List Quizzes{/tr}"} {button href="tiki-edit_quiz.php" class="btn btn-default" _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 normal"> <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}