blob: 47920494c4db389714f37433ab9287ef21ad707b (
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
|
<?php //define('BLOCK_RIGHT_DISABLE','block_right_disable'); ?>
<html>
<head>
<title>Awards and Medals</title>
<style type="text/css">
/*th.header {
width:175px;
background:#333;
}
td.rudi {
text-align: center;
vertical-align: middle;
} */
</style>
</head>
<body>
<table class="rudi" align="center" style="width: 100%;">
<tr>
<th scope="col">Image</th>
<th scope="col">Rank</th>
</tr>
<?php foreach($this->ranks as $rank): ?>
<tr>
<td><img src="<?php echo "modules/rudi/images/ranks/small/{$rank->image}"; ?>" /> </td>
<td><?php echo $rank->longname; ?> </td>
</tr>
<?php endforeach; ?>
</table>
</body>
</html>
|