Code

Updated listing table summary
[gosa.git] / gosa-plugins / opsi / admin / opsi / opsiware.tpl
3 {if $init_failed}
4  <h3>{t}Information{/t}
5  </h3><font style='color: #FF0000;'>
6  {msgPool type=siError p=$message}</font>
7  <button type='submit' name='reinit'>{t}Retry{/t}</button>
8  {else}
9  
10  {if $type == 0}
11   <h3>{t}Hardware information{/t}
12   </h3>
13   {else}
14   <h3>{t}Software information{/t}
15   </h3>
16   
17  {/if}{foreach from=$info item=item key=key}
18  <div style='background-color: #E8E8E8; width: 100%; border: 2px dotted #CCCCCC;'>
19   <h3>{t}Device{/t}
20    {$key+1}
21   </h3>{foreach from=$item key=name item=value}
22   <div style="text-transform:lowercase;width:30%; float: left; ">
23    {$name}:&nbsp;
24   </div>
25   <div style="width:70%; float: right;background-color: #DADADA;">
26    {$value.0.VALUE}&nbsp;
27   </div>
28   <div style='clear: both;'>
29   </div>{/foreach}
30  </div>
31  <br>{/foreach}
32  
33 {/if}