blob: b995d3194115f7d81f02d8f7b1c4ea2ee7f7823e [file] [log] [blame]
Felix Meschbergerb722be52010-02-18 15:42:31 +00001<script type="text/javascript" src="res/ui/components.js"></script>
2<script type="text/javascript">
3// <![CDATA[
4var drawDetails = ${__drawDetails__};
5var scrData = ${__data__};
6// i18n
7var i18n = {
8 'Enable' : '${scr.action.enable}',
9 'Disable' : '${scr.action.disable}',
10 'Configure' : '${scr.action.configure}',
11 'Bundle' : '${scr.prop.bundle}',
12 'Default State' : '${scr.prop.defstate}',
13 'Activation' : '${scr.prop.activation}',
14 'Service Type' : '${scr.serv.type}',
15 'Services' : '${scr.serv}',
16 'Properties' : '${scr.prop.properties}',
17 stat_no_service : "${scr.status.no_service}",
18 stat_no_components : "${scr.status.no_components}",
19 stat_ok : "${scr.status.ok}"
20}
21// ]]>
22</script>
23<p class="statline">&nbsp;</p>
24
25
26<div id="scr"> <!-- data available -->
27 <!-- top header -->
28 <form method='post' enctype='multipart/form-data' action="">
29 <div class="ui-widget-header ui-corner-top buttonGroup">
30 <button class='reloadButton' type='button' name='reload'>${reload}</button>
31 </div>
32 </form>
33
34 <table id="plugin_table" class="tablesorter nicetable noauto">
35 <thead>
36 <tr>
37 <th class="col_Id">${id}</th>
38 <th class="col_Name">${scr.title.name}</th>
39 <th class="col_Status">${scr.title.status}</th>
40 <th class="col_Actions">${scr.title.actions}</th>
41 </tr>
42 </thead>
43 <tbody>
44 <tr><td colspan="4">&nbsp;</td></tr>
45 </tbody>
46 </table>
47</div> <!-- end data available -->
48
49<!-- bottom header -->
50<form method='post' enctype='multipart/form-data' action="">
51 <div class="ui-widget-header ui-corner-bottom buttonGroup">
52 <button class='reloadButton' type='button' name='reload'>${reload}</button>
53 </div>
54</form>