blob: 06fbe6249f4eff4df7dbe014b55c0fb42e0322b0 (
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
<?php
function Rating($val)
{
define(EXCELLENT,100);
define(GOOD, 75);
define(FAIR, 50);
define(POOR, 25);
define(TERRIBLE, 0);
if($val == EXCELLENT)
return "Excellent";
elseif($val < EXCELLENT && $val >= GOOD)
return "Good";
elseif($val < GOOD && $val >= POOR)
return "Poor";
elseif($val < POOR && $val >= TERRIBLE)
return "Terrible";
else
return "Bad Value";
}
OpenTable("Drills");
if(isset($_GET['id']))
{
decho($this->drills);
foreach($this->drills as $drill)
{
$name = $drill->last_name . ', ' . $drill->first_name;
$pRating = Rating($drill->performance);
$iRating = Rating($drill->initiative);
echo "<tr>
<th class=\"header\">Soldier</th>
<th class=\"header\">Performance Rating</th>
<th class=\"header\">Initiative Rating</th>
<th class=\"header\">Early Excusal</th>
<th class=\"header\">Excusal Reason</th>
</tr>";
echo "<tr>
<td class=\"rudi\">{$name}</td>
<td class=\"rudi\">{$pRating}</td>
<td class=\"rudi\">{$iRating}</td>
<td class=\"rudi\">{$drill->excusal}</td>
<td class=\"rudi\">{$drill->excusal_reason}</td>
</tr>";
}
CloseTable();
echo "<a href=\"?load=rudi&show=drills\">Back</a>";
return;
}
echo "<tr>
<th class=\"header\"> </th>
<th class=\"header\">Date</th>
<!-- <th class=\"header\">News</th> -->
<th class=\"header\">Notes</th>
</tr>";
foreach($this->drills as $drill)
{
echo "<tr>
<td class=\"rudi\"><a href=\"?load=rudi&show=drills&id={$drill->drill_id}\">View</a></td>
<td class=\"rudi\">{$drill->date}</td>
<!-- <td class=\"rudi\">{$drill->news}</td> -->
<td class=\"rudi\">{$drill->notes}</td>
</tr>";
}
CloseTable();
?>
|