blob: 8d240fbc7b97fe278aeadcc995772d7602183d7b (
plain) (
tree)
|
|
<?php
$title = "Studying " . $study['listowner'] . ':' . $study['listname'];
require("tpl/general/top.php");
echo '<div class="small_right"><a href="listrm-study-' . $studyid . '">stop studying</a></div>';
echo '<div class="ordering_links">' . filters_html_full() . '</div>';
echo '<table><tr><th>Batch name</th><th>actions</th><th>tests</th><th>last test</th><th>score</th></tr>';
foreach ($batches as $batch) {
$color = "";
if ($batch['lr_date']) {
if ($batch['lr_score'] == 100)
$color = "#00AA00";
else if ($batch['lr_score'] >= 80)
$color = "#55FF55";
else if ($batch['lr_score'] >= 50)
$color = "#FFFF00";
else
$color = "#FF7777";
}
if ($color != "") $color = ' style="background-color: ' . $color . '"';
$days_color = ($batch['lr_days'] >= 30 ? "#BFBFBF" :
($batch['lr_days'] >= 20 ? "#C7C7C7" :
($batch['lr_days'] >= 14 ? "#CFCFCF" :
($batch['lr_days'] >= 10 ? "#D7D7D7" :
($batch['lr_days'] >= 7 ? "#DFDFDF" :
($batch['lr_days'] >= 5 ? "#E7E7E7" :
($batch['lr_days'] >= 3 ? "#EFEFEF" :
($batch['lr_days'] >= 1 ? "#F7F7F7" : "#FFFFFF"))))))));
$dc = ($batch['lr_date'] ? ' style="background-color: ' . $days_color .'"' : '');
echo '<tr>';
echo '<td><code>' . $batch['name'] . '</code></td>';
echo '<td><a href="batch-study-' . $batch['id'] . '">view</a> | <a href="batchreview-study-' . $batch['id'] . '">test</a></td>';
echo '<td>' . $batch['num_reviews'] . '</td>';
echo '<td'.$dc.'>' . ($batch['lr_date'] ? $batch['lr_date'] : "never") . '</td>';
echo '<td'.$color.'>' . ($batch['lr_date'] ? $batch['lr_score'] . '/100' : 'N/A') .
($batch['blr_date'] ? ($batch['lr_score'] > $batch['blr_score'] ? '<span style="color: green"> ⬈</span>' :
($batch['lr_score'] < $batch['blr_score'] ? '<span style="color: orange;"> ⬊</span>' :
'<span style="color: grey"> ➡</span>')) : '') . '</td>';
echo '</tr>';
}
echo '</table>';
require("lib_sidebar.php");
require("tpl/general/bottom.php");
|