1.19.122
by Clayton Kramer
Merged Fabio's webservices package |
1 |
<h2>Organizations Listing</h2> |
2 |
||
3 |
<div id="tableContainer"> |
|
4 |
<table class="singleTable" style="width: 700px;"> |
|
5 |
<thead>
|
|
6 |
<tr>
|
|
7 |
<th>Id</th> |
|
8 |
<th>Organization</th> |
|
9 |
<th>Entity Id</th> |
|
10 |
<th>Branch</th> |
|
11 |
<th>Email Contact</th> |
|
12 |
<th>Phone Contact</th> |
|
13 |
<th>Created at</th> |
|
14 |
<th>Updated at</th> |
|
15 |
</tr>
|
|
16 |
</thead>
|
|
17 |
<tbody>
|
|
18 |
<?php if($results): foreach ($results as $key => $organization): ?> |
|
19 |
<tr>
|
|
20 |
<td><a
|
|
21 |
href="<?php echo url_for('organization/show?id='. $organization['id'])?>"><?php echo $organization['id'] ?> |
|
22 |
</a></td>
|
|
23 |
<td><?php echo $organization['organization'] ?></td> |
|
24 |
<td><?php echo $organization['entity_id'] ?></td> |
|
25 |
<td><?php echo $organization['branch'] ?></td> |
|
26 |
<td><?php echo $organization['email'] ?></td> |
|
27 |
<td><?php echo $organization['phone'] ?></td> |
|
28 |
<td><?php echo $organization['created_at'] ?></td> |
|
29 |
<td><?php echo $organization['updated_at'] ?></td> |
|
30 |
</tr>
|
|
31 |
<?php endforeach; endif; ?> |
|
32 |
</tbody>
|
|
33 |
</table>
|
|
34 |
</div>
|