aboutsummaryrefslogtreecommitdiff
path: root/modules/rudi/views/view.unit.php
blob: fcc66acb76647a54ffe1f268e36aeff9e47206d1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php $data = $info->Unit($unit_id); ?>

<table align="center">
	<tr>
		<th>&nbsp;</th>
		<td><img src="<?php echo '/cms/modules/rudi/images/units/' . $data->logo; ?>" alt="<?php echo $data->logo; ?>"/></td>
	</tr>
	<tr>
		<th width="25%">Unit</th>
		<td><?php echo $data->name; ?></td>
	</tr>
	<tr>
		<th>Creed</th>
		<td><?php echo $data->creed; ?></td>
	</tr>
	<tr>
		<th valign="top">Biography</th>
		<td><?php echo $data->bio; ?></td>
	</tr>
</table>

<?php decho($data); ?>