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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
<!DOCTYPE html>
<html>
<head>
<title>Index</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="<?php echo base_url();?>css/bootstrap.min.css" rel="stylesheet" type="text/css"/>
<link href="<?php echo base_url();?>css/bootstrap-responsive.min.css" rel="stylesheet" type="text/css"/>
<link href="<?php echo base_url();?>css/adminstyle.css" rel="stylesheet" type="text/css"/>
<script src="<?php echo base_url();?>js/bootstrap.js" type="text/javascript"></script>
</head>
<body>
<div id="header">
<div class="container">
<div class="row">
<div class="span12" id="nav">
<div class="row">
<div class="separator"></div>
<div id="logo">*Lenasys logo*</div>
<div class="separator"></div>
</div>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="span12" id="mainpage">
<div class="row">
<div class="span3">
<div id="menu">
<div id="menuheader">
Dashboard
</div>
<ul>
<li class="active">Courses</li>
<li>Examples</li>
</ul>
</div>
</div>
<div class="span9">
<div class="span9" id="content">
<h2>Manage example - <?php echo $cid ?></h2>
<table class="table table-striped">
<thead>
<tr>
<th>Example ID</th>
<th>Manage</th>
</tr>
</thead>
<tbody>
<?php
foreach ($examples as $item):
?>
<tr>
<td><?php echo $item->example ?></td>
<td><button class="btn btn-primary" onClick="window.location.href='<?php echo base_url();?>admin/manageexample/<?php echo $item->cid ?>/<?php echo $item->example ?>'"><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/addexample/<?php echo $cid ?>'"><i class="icon-plus-sign icon-white"></i> Add example</button>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>
|