summaryrefslogtreecommitdiff
path: root/tpl/study/list.php
blob: 3bb16ddd1a16726ef563fbc2f7c8fc613b3362da (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?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><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");