summaryrefslogtreecommitdiff
path: root/tpl/study/list.php
diff options
context:
space:
mode:
Diffstat (limited to 'tpl/study/list.php')
-rw-r--r--tpl/study/list.php55
1 files changed, 0 insertions, 55 deletions
diff --git a/tpl/study/list.php b/tpl/study/list.php
deleted file mode 100644
index 265d8a7..0000000
--- a/tpl/study/list.php
+++ /dev/null
@@ -1,55 +0,0 @@
-<?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'] >= 90)
- $color = "#22EE22";
- else if ($batch['lr_score'] >= 80)
- $color = "#55FF55";
- else if ($batch['lr_score'] >= 60)
- $color = "#EEEE00";
- else if ($batch['lr_score'] >= 40)
- $color = "#FFAA22";
- 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><a id="batch_' . $batch['id'] . '"></a><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");