templates/report/client_info.html.ep
author Vincent Tondellier <tonton+hg@team1664.org>
Sun, 14 Feb 2016 23:20:44 +0100
changeset 102 396528bdb9ad
parent 78 0ebef32c34af
child 104 b75005d8b002
permissions -rw-r--r--
Allow showing a group by the uuid of any of it's individual crash This removes the dependency on insertion order. Also split Group::stats_by_product_and_version from get

<tr>
  %= t td => 'Start Time'
  %= t td => $client_info->{StartupTime}
</tr>
<tr>
  %= t td => 'Crash Time'
  %= t td => $client_info->{CrashTime}
</tr>
<tr>
  %= t td => 'Product'
  %= t td => $client_info->{ProductName}
</tr>
<tr>
  %= t td => 'Distributor'
  %= t td => $client_info->{Distributor}
</tr>
<tr>
  %= t td => 'Version'
  %= t td => $client_info->{Version}
</tr>
<tr>
  %= t td => 'BuildID'
  %= t td => $client_info->{BuildID}
</tr>
<tr>
  %= t td => 'Release Channel'
  %= t td => $client_info->{ReleaseChannel} || ""
</tr>
<tr>
  %= t td => 'UUID'
  %= t td => $self->param('uuid');
</tr>
<tr>
  %= t td => 'User ID'
  %= t td => $client_info->{UserID};
</tr>