summaryrefslogtreecommitdiffstats
path: root/web/templates/labitrack.d/objecttable
blob: 089f02b8525aef70557ff6fdf95671a524ac916f (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
{{pagination}}
<table class="table table-striped">
	<thead>
		<tr>
			<th>#</th>
			<th>Name</th>
			<th>Description</th>
			<th>Tags</th>
			<th>&nbsp;</th>
		</tr>
	</thead>
	<tbody>
	{{#each rows}}
		<tr>
			<td><a href="/view/{{id}}">{{id}}</a></td>
			<td><a href="/view/{{id}}">{{name}}</a></td>
			<td><a href="/view/{{id}}">{{desc}}</a></td>
			<td><a href="/view/{{id}}">{{tags}}</a></td>
		</tr>
	{{/each}}
	</tbody>
</table>
{{pagination}}