1 {if $init_failed}
2 <h2>{t}Information{/t}</h2>
3 <font style='color: #FF0000;'>{msgPool type=siError p=$message}</font>
4 <input type='submit' name='reinit' value="{t}Retry{/t}">
5 {else}
6 {if $type == 0}
7 <h2><img class='center' alt='' src='plugins/opsi/images/hardware_info.png'> {t}Hardware information{/t}</h2>
8 {else}
9 <h2><img class='center' alt='' src='plugins/opsi/images/software_info.png'> {t}Software information{/t}</h2>
10 {/if}
12 {foreach from=$info item=item key=key}
13 <div style='background-color: #E8E8E8; width: 100%; border: 2px dotted #CCCCCC;'>
14 <h2>{t}Device{/t} { $key+1 }</h2>
15 {foreach from=$item key=name item=value}
16 <div style="text-transform:lowercase;width:30%; float: left; ">{$name}: </div>
17 <div style="width:70%; float: right;background-color: #DADADA;">{$value.0.VALUE} </div>
18 <div style='clear: both;'></div>
19 {/foreach}
20 </div>
21 <br>
22 {/foreach}
23 {/if}