templates/report/client_info.html.ep
author Vincent Tondellier <tonton+hg@team1664.org>
Wed, 04 Nov 2015 17:43:00 +0100
changeset 78 0ebef32c34af
parent 2 873ceb7769a8
child 104 b75005d8b002
permissions -rw-r--r--
Refactor everything - change db access method, use Mojo::{Pg,SQLite,...} instead of DBIx::Class - use Minion as job queue - refactor into a non-Lite Mojolicious app
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
78
0ebef32c34af Refactor everything
Vincent Tondellier <tonton+hg@team1664.org>
parents: 2
diff changeset
     1
<tr>
0ebef32c34af Refactor everything
Vincent Tondellier <tonton+hg@team1664.org>
parents: 2
diff changeset
     2
  %= t td => 'Start Time'
0ebef32c34af Refactor everything
Vincent Tondellier <tonton+hg@team1664.org>
parents: 2
diff changeset
     3
  %= t td => $client_info->{StartupTime}
0ebef32c34af Refactor everything
Vincent Tondellier <tonton+hg@team1664.org>
parents: 2
diff changeset
     4
</tr>
0ebef32c34af Refactor everything
Vincent Tondellier <tonton+hg@team1664.org>
parents: 2
diff changeset
     5
<tr>
0ebef32c34af Refactor everything
Vincent Tondellier <tonton+hg@team1664.org>
parents: 2
diff changeset
     6
  %= t td => 'Crash Time'
0ebef32c34af Refactor everything
Vincent Tondellier <tonton+hg@team1664.org>
parents: 2
diff changeset
     7
  %= t td => $client_info->{CrashTime}
0ebef32c34af Refactor everything
Vincent Tondellier <tonton+hg@team1664.org>
parents: 2
diff changeset
     8
</tr>
2
873ceb7769a8 Display client info
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff changeset
     9
<tr>
873ceb7769a8 Display client info
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff changeset
    10
  %= t td => 'Product'
873ceb7769a8 Display client info
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff changeset
    11
  %= t td => $client_info->{ProductName}
873ceb7769a8 Display client info
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff changeset
    12
</tr>
873ceb7769a8 Display client info
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff changeset
    13
<tr>
873ceb7769a8 Display client info
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff changeset
    14
  %= t td => 'Distributor'
873ceb7769a8 Display client info
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff changeset
    15
  %= t td => $client_info->{Distributor}
873ceb7769a8 Display client info
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff changeset
    16
</tr>
873ceb7769a8 Display client info
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff changeset
    17
<tr>
873ceb7769a8 Display client info
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff changeset
    18
  %= t td => 'Version'
873ceb7769a8 Display client info
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff changeset
    19
  %= t td => $client_info->{Version}
873ceb7769a8 Display client info
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff changeset
    20
</tr>
873ceb7769a8 Display client info
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff changeset
    21
<tr>
873ceb7769a8 Display client info
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff changeset
    22
  %= t td => 'BuildID'
873ceb7769a8 Display client info
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff changeset
    23
  %= t td => $client_info->{BuildID}
873ceb7769a8 Display client info
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff changeset
    24
</tr>
873ceb7769a8 Display client info
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff changeset
    25
<tr>
873ceb7769a8 Display client info
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff changeset
    26
  %= t td => 'Release Channel'
78
0ebef32c34af Refactor everything
Vincent Tondellier <tonton+hg@team1664.org>
parents: 2
diff changeset
    27
  %= t td => $client_info->{ReleaseChannel} || ""
2
873ceb7769a8 Display client info
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff changeset
    28
</tr>
873ceb7769a8 Display client info
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff changeset
    29
<tr>
873ceb7769a8 Display client info
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff changeset
    30
  %= t td => 'UUID'
873ceb7769a8 Display client info
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff changeset
    31
  %= t td => $self->param('uuid');
873ceb7769a8 Display client info
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff changeset
    32
</tr>
78
0ebef32c34af Refactor everything
Vincent Tondellier <tonton+hg@team1664.org>
parents: 2
diff changeset
    33
<tr>
0ebef32c34af Refactor everything
Vincent Tondellier <tonton+hg@team1664.org>
parents: 2
diff changeset
    34
  %= t td => 'User ID'
0ebef32c34af Refactor everything
Vincent Tondellier <tonton+hg@team1664.org>
parents: 2
diff changeset
    35
  %= t td => $client_info->{UserID};
0ebef32c34af Refactor everything
Vincent Tondellier <tonton+hg@team1664.org>
parents: 2
diff changeset
    36
</tr>