/lenasys/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/lenasys/trunk
53.1.1 by galaxyAbstractor
fixed adminpanel and codeviewer a bit
1
<body>
2
	<div  id="header">
3
		<div class="container">
4
			<div class="row">
5
				<div class="span12" id="nav">
6
				</div>
7
			</div>
8
		</div>
9
	</div>
10
	<div class="container">
11
		
12
		<div class="row">
13
			<div class="span12" id="mainpage">
14
				<div class="row">
15
					<div class="span6">
58.1.1 by a11patfr at his
Fixed the dragand drop thingamabob.
16
						<h3>Managing example - <?php echo $example?> </h3>
17
						<div id="dropbox">
18
							<span class="message"><i>Drop files here to upload</i></span>
19
							<div class="progressHolder">
20
								<div class="progress"></div>
21
							</div>
22
						</div>
23
						<div id="filelist">
24
						</div>
25
						<?php 
26
							echo form_open(base_url().'admin/manageexample');
27
	                                  		echo form_label('Documentation', 'documentation');
28
	                                   		echo form_textarea(array('name' => 'documentation',  'class' => 'ckeditor'/*, 'value' => $documentation*/));
29
	                                   		echo form_hidden('cid',$cid); 
30
	                                   		echo form_hidden('example',$example); 
31
	                                   		echo form_hidden('category',$category);
32
	                                   		echo form_hidden('subcategory',$subcategory); 
33
	                                   		echo form_hidden('files'); 
34
	                                   		echo form_hidden('baseurl', base_url()); 
35
	                                   		echo "<br>";
36
	                                   		echo form_submit(array('name' => 'submit', 'value' => 'Update example', "class" => "btn btn-primary")); 
37
							echo form_close(); 
53.1.1 by galaxyAbstractor
fixed adminpanel and codeviewer a bit
38
							
58.1.1 by a11patfr at his
Fixed the dragand drop thingamabob.
39
						 ?>
53.1.1 by galaxyAbstractor
fixed adminpanel and codeviewer a bit
40
					</div>
41
					<div class="span6">
42
						<?php 
43
							echo $editors;
44
						?>
20.1.1 by galaxyAbstractor
* Added an simple admin panel to the codeviewer-cmssy stuff
45
					</div>
46
					
47
				</div>
48
			</div>
49
50
		</div>
51
	</div>
52
</body>
53
58.1.1 by a11patfr at his
Fixed the dragand drop thingamabob.
54
</html>