/lenasys/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/lenasys/trunk
50.1.1 by galaxyAbstractor
Started implementing categories and a menu
1
					<div class="span9">
20.1.1 by galaxyAbstractor
* Added an simple admin panel to the codeviewer-cmssy stuff
2
						
3
						<div class="span9" id="content">
4
							<h2>Manage course - <?php echo $cid ?></h2>
23.1.2 by galaxyAbstractor
Fixed database stuff, added files to database.
5
							<table  class="table table-striped">
20.1.1 by galaxyAbstractor
* Added an simple admin panel to the codeviewer-cmssy stuff
6
								<thead>
7
									<tr>
8
										<th>Category ID</th>
50.1.1 by galaxyAbstractor
Started implementing categories and a menu
9
										<th>Manage</th>
20.1.1 by galaxyAbstractor
* Added an simple admin panel to the codeviewer-cmssy stuff
10
									</tr>
11
								</thead>
12
								<tbody>
13
									<?php
14
										foreach ($categories as $item):
50.1.1 by galaxyAbstractor
Started implementing categories and a menu
15
									?>
20.1.1 by galaxyAbstractor
* Added an simple admin panel to the codeviewer-cmssy stuff
16
									<tr>
17
										<td><?php echo $item->categoryName ?></td>
50.1.1 by galaxyAbstractor
Started implementing categories and a menu
18
										<td><button class="btn btn-primary" onClick="window.location.href='<?php echo base_url();?>admin/managecategory/<?php echo $cid ?>/<?php echo $item->categoryName ?>'"><i class="icon-cog icon-white"></i> Manage</button></td>
19
									</tr>
20.1.1 by galaxyAbstractor
* Added an simple admin panel to the codeviewer-cmssy stuff
20
									<?php endforeach;?>
21
								</tbody>
22
							</table>
23
							<button class="btn btn-primary" onClick="window.location.href='<?php echo base_url();?>admin/addcategory/<?php echo $cid ?>'"><i class="icon-plus-sign icon-white"></i> Add category</button>
50.1.1 by galaxyAbstractor
Started implementing categories and a menu
24
						</div>
20.1.1 by galaxyAbstractor
* Added an simple admin panel to the codeviewer-cmssy stuff
25
					</div>
26
					
27
				</div>
28
			</div>
29
30
		</div>
31
	</div>
32
</body>
33
34
</html>
35