-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathconsole_templates.xml
More file actions
34 lines (33 loc) · 931 Bytes
/
console_templates.xml
File metadata and controls
34 lines (33 loc) · 931 Bytes
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
<html>
<head>
<script type="text/html" id="console_content">
<![CDATA[
<div class="row">
<div class="span3" id="con_pools_and_consoles">
<ul class="nav nav-list" id="con_pools_and_consoles_ul">
<li class="nav-header">Pool: xxx</li>
<li class="active"><a href="#">debian</a></li>
<li><a href="#">windows</a></li>
<li><a href="#">ubuntu</a></li>
<li><a href="#">freebsd</a></li>
<li class="nav-header">Pool: yyy</li>
<li><a href="#">windows</a></li>
<li><a href="#">ubuntu</a></li>
</ul>
</div>
<div class="span9" id="con_console"></div>
</div>
]]>
</script>
<script type="text/html" id="console_list">
<![CDATA[
{{#pools}}
<li class="nav-header">Pool: {{name}}</li>
{{#consoles}}
<li><a {{#active}}class="active"{{/active}} data-ref="{{ref}}" data-pool="{{pool}}" href="#">{{conname}}</a></li>
{{/consoles}}
{{/pools}}
]]>
</script>
</head>
</html>