templates/report/system_info.html.ep
author Vincent Tondellier <tonton+hg@team1664.org>
Tue, 01 May 2012 23:34:48 +0200
changeset 0 5b78b8c79d9c
child 2 873ceb7769a8
permissions -rw-r--r--
Initial commit

%= t table => (class => 'table table-striped table-bordered table-condensed') => begin
<tr>
  %= t td => 'Build Architecture'
  %= t td => $system_info->{cpu_arch}
</tr>
<tr>
  %= t td => 'Build Architecture Info'
  %= t td => $system_info->{cpu_info}
</tr>
<tr>
  %= t td => 'OS'
  %= t td => $system_info->{os}
</tr>
<tr>
  %= t td => 'OS Version'
  %= t td => $system_info->{os_ver}
</tr>
% end