1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
<div class="span9">
<div class="span9" id="content">
<h2>Manage example - <?php echo $example ?> - <?php echo $cid ?></h2>
<table class="table table-striped">
<thead>
<tr>
<th>Page ID</th>
<th>Manage</th>
</tr>
</thead>
<tbody>
<?php
foreach ($pages as $item):
?>
<tr>
<td><?php echo $item->name ?></td>
<td><button class="btn btn-primary" onClick="window.location.href='<?php echo base_url();?>admin/managepage/<?php echo $cid ?>/<?php echo $example ?>/<?php echo $item->name ?>'"><i class="icon-cog icon-white"></i> Manage</button></td>
</tr>
<?php endforeach;?>
</tbody>
</table>
<button class="btn btn-primary" onClick="window.location.href='<?php echo base_url();?>admin/addpage/<?php echo $cid ?>/<?php echo $example ?>'"><i class="icon-plus-sign icon-white"></i> Add page</button>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>
|