bzr branch
http://gegoxaren.bato24.eu/bzr/lenasys/trunk
20.1.1
by galaxyAbstractor
* Added an simple admin panel to the codeviewer-cmssy stuff |
1 |
<body>
|
2 |
<div id="header"> |
|
3 |
<div class="container"> |
|
4 |
<div class="row"> |
|
5 |
<div class="span12" id="nav"> |
|
6 |
<div class="row"> |
|
7 |
<div class="separator"></div> |
|
8 |
<div id="logo">*Lenasys logo*</div> |
|
9 |
|
|
10 |
<div class="separator"></div> |
|
11 |
|
|
12 |
</div> |
|
13 |
</div> |
|
14 |
</div> |
|
15 |
</div> |
|
16 |
</div> |
|
17 |
<div class="container"> |
|
18 |
|
|
19 |
<div class="row"> |
|
20 |
<div class="span12" id="mainpage"> |
|
21 |
<div class="row"> |
|
22 |
<div class="span3"> |
|
23 |
<div id="menu"> |
|
24 |
<div id="menuheader"> |
|
25 |
Dashboard
|
|
26 |
</div> |
|
27 |
<ul> |
|
28 |
<li class="active">Courses</li> |
|
29 |
<li>Examples</li> |
|
30 |
</ul> |
|
31 |
</div> |
|
32 |
</div> |
|
33 |
<div class="span9"> |
|
34 |
|
|
35 |
<div class="span9" id="content"> |
|
36 |
<h2>Manage example - <?php echo $example ?> - <?php echo $cid ?></h2> |
|
37 |
<table class="table table-striped"> |
|
38 |
<thead> |
|
39 |
<tr> |
|
40 |
<th>Page ID</th> |
|
41 |
<th>Manage</th> |
|
42 |
</tr> |
|
43 |
</thead> |
|
44 |
<tbody> |
|
45 |
<?php |
|
46 |
foreach ($pages as $item): |
|
47 |
?>
|
|
48 |
<tr> |
|
49 |
<td><?php echo $item->page ?></td> |
|
50 |
<td><button class="btn btn-primary" onClick="window.location.href='<?php echo base_url();?>admin/managepage/<?php echo $item->cid ?>/<?php echo $item->example ?>/<?php echo $item->page ?>'"><i class="icon-cog icon-white"></i> Manage</button></td> |
|
51 |
</tr> |
|
52 |
<?php endforeach;?> |
|
53 |
</tbody> |
|
54 |
</table> |
|
55 |
<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> |
|
56 |
</div> |
|
57 |
</div> |
|
58 |
|
|
59 |
</div> |
|
60 |
</div> |
|
61 |
||
62 |
</div> |
|
63 |
</div> |
|
64 |
</body>
|
|
65 |
||
66 |
</html>
|