aboutsummaryrefslogtreecommitdiffstats
path: root/admin/templates/apps.php
blob: c3f4fdfcc19869147278ede0714ca82cfafb7e7c (plain)
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
<?php
/*
 * Template for Apps
 */
?>
<h1>Apps Repository</h1>


<table cellspacing="0">
	<thead>
		<tr>
			<th></th>
			<th>Name</th>
			<th>Modified</th>
			<th></th>
		</tr>
	</thead>
	<tbody>
		<?php foreach($_["apps"] as $app): ?>
			<tr>
				<td class="filename"><?php if($app["preview"] <> "") { echo('<a href=""><img border="0" src="'.$app["preview"].'" /></a>'); } ?> </a></td>
				<td class="filename"><a href="" title=""><?php echo $app["name"]; ?></a></td>
				<td class="date"><?php echo date($app["changed"]); ?></td>
				<td class="fileaction"><a href="" title=""><img src="images/drop-arrow.png" alt="+" /></a></td>
			</tr>
		<?php endforeach; ?>
	</tbody>
</table>