Project

General

Profile

1
<p>
2
	<b>Resource type:</b> <i>{{type}}</i><br />
3
	<b>size: </b><i>{{list.length}}</i>
4
</p>
5

    
6
<table class="table table-striped small">
7
	<thead>
8
		<tr>
9
			<th style="width: 40px">#</th>
10
			<th>ID</th>
11
			<th>Code</th>
12
			<th>Name</th>
13
			<th>Description</th>
14
			<th>ServiceId</th>
15
			<th class="text-center">Valid</th>
16
			<th class="text-right">Date</th>
17
		</tr>
18
	</thead>
19
	<tbody>
20
		<tr ng-repeat="ds in list">
21
			<td>{{$index + 1}}</td>
22
			<td><a href="#/ds/{{ds.id}}">{{ds.id}}</a></td>
23
			<td>{{ds.code}}</td>
24
			<td>{{ds.name}}</td>
25
			<td>{{ds.description}}</td>
26
			<td>{{ds.serviceId}}</td>
27
			<td class="text-center">{{ds.valid}}</td>
28
			<td class="text-right">{{ds.date | date:'yyyy-MM-dd HH:mm:ss'}}</td>
29
		</tr>
30
	</tbody>
31
</table>
(5-5/10)