Project

General

Profile

1
$inspector/actions/actionMaster(ait={
2

    
3
	<style type="text/css">
4
		#setList    { margin-top: 12px; }
5
		#setList td { padding: 4px; padding-left: 8px; padding-right: 8px; font-size: 11px;}
6
		#setList th { font-weight: bold; border-bottom: 1px solid #999; font-size: 14px; }
7
	</style>
8

    
9
	<br /><br />
10
	<form method="get" action="createSet.do">
11
		<b>New set:</b>
12
		ID: <input type="text" name="id" />
13
		Name: <input type="text" name="name" />
14
		<input type="submit" value="create">
15
	</form>
16
	<br />
17
	<table id="setList" cellspacing="0px">
18
		<thead>
19
			<tr>
20
				<th style="width: 100px">id</th>
21
				<th style="width: 240px">name</th>
22
				<th style="width: 120px">impact</th>
23
				<th style="width: 450px">latest raw set</th>
24
				<th style="width: 200px">latest raw set creation</th>
25
				<th style="width: 200px">latest raw set update</th>
26
				<th style="width: 100px">&nbsp;</th>
27
			</tr>
28
		</thead>
29
		<tbody>
30
			$sets:{s|
31
				<tr>
32
					<td>$s.id$</td>
33
					<td>$s.name$</td>
34
					<td>$s.impact$</td>
35
					<td>$s.latest.id$</td>
36
					<td>$s.latest.creationDate$</td>
37
					<td>$s.latest.lastUpdate$</td>
38
					<td><a href="deleteSet.do?set=$s.id$">[delete]</a></td>
39
				</tr>
40
			}$
41
		</tbody>
42
	</table>
43

    
44
})$
(4-4/4)