1
1
<h2>Staff Listing</h2>
2
3
<div id="tableContainer">
3
4
<table class="singleTable" style="width: 700px;">
8
<table class="singleTable" style="width: 296px;">
11
<th>Resource Type</th>
18
<th>Staff Resource Status
19
<table class="singleTable" style="width: 269px;">
22
<th>Resource Status</th>
29
<th colspan="2">Organization</th>
9
<th>Staff Resource Type</th>
10
<th>Date of Birth</th>
30
14
<th>Created at</th>
31
15
<th>Updated at</th>
35
19
<?php if($results): foreach ($results as $key => $staff): ?>
37
<td><a href="<?php echo url_for('staff/show?id='. $staff['id'])?>"><?php echo $staff['id'] ?></a></td>
39
<table class="singleTable" style="width: 296px;">
40
<?php foreach ($staff['resources']['resource_type'] as $k => $resource): ?>
42
<td><?php echo $resource['staff_resource_type']; ?></td>
43
<td><?php echo $resource['staff_resource_type_abbr']; ?></td>
44
<td><?php echo $resource['description']; ?></td>
51
<table class="singleTable" style="width: 269px;">
52
<?php foreach ($staff['resources']['resource_status'] as $k => $resource): ?>
54
<td><?php echo $resource['staff_resource_status']; ?></td>
55
<td><?php echo $resource['description']; ?></td>
56
<td><?php echo $resource['is_available']; ?></td>
62
<?php foreach ($staff['organizations'] as $k => $org): ?>
63
<?php echo $org['id']; ?> -
64
<?php echo $org['organization']; ?>
21
<td><a href="<?php echo url_for('staff/show?id='. $staff['id'])?>"><?php echo $staff['id'] ?>
26
<?php foreach ($staff['person_names'] as $name): ?>
27
<td><?php echo $name ?></td>
33
<table class="singleTable" style="width: 200px;">
35
<?php foreach ($staff['staff_resource_type'] as $sr): ?>
36
<td><?php echo $sr ?></td>
40
<?php foreach ($staff['staff_resource_type_abbr'] as $sr): ?>
41
<td><?php echo $sr ?></td>
45
<?php foreach ($staff['staff_resource_type_description'] as $sr): ?>
46
<td><?php echo $sr ?></td>
51
<td><?php echo $staff['date_of_birth'] ?>
54
<td><?php echo null ?>
57
<td><?php echo null ?>
60
<td><?php echo null ?>
67
63
<td><?php echo $staff['created_at'] ?></td>
68
64
<td><?php echo $staff['updated_at'] ?></td>