templates/report/client_info.html.ep
author Vincent Tondellier <tonton+hg@team1664.org>
Thu, 24 Sep 2015 01:49:55 +0200
changeset 75 e3912669678c
parent 2 873ceb7769a8
child 78 0ebef32c34af
permissions -rw-r--r--
Overhaul the repository link functionality - Fix regex (repositories with number or other characters were not accepted) - Url escape template arguments by default (the "do not escape" <%== $var %> markers can be used if needed) - Also support a generic repository type instead of only repotype:repopath in the configuration ($repotype:$repopath has priority over $repotype if both are defined) - Cache compiled templates
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
873ceb7769a8 Display client info
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff changeset
     1
<tr>
873ceb7769a8 Display client info
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff changeset
     2
  %= t td => 'Product'
873ceb7769a8 Display client info
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff changeset
     3
  %= t td => $client_info->{ProductName}
873ceb7769a8 Display client info
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff changeset
     4
</tr>
873ceb7769a8 Display client info
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff changeset
     5
<tr>
873ceb7769a8 Display client info
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff changeset
     6
  %= t td => 'Distributor'
873ceb7769a8 Display client info
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff changeset
     7
  %= t td => $client_info->{Distributor}
873ceb7769a8 Display client info
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff changeset
     8
</tr>
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 => 'Version'
873ceb7769a8 Display client info
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff changeset
    11
  %= t td => $client_info->{Version}
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 => 'BuildID'
873ceb7769a8 Display client info
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff changeset
    15
  %= t td => $client_info->{BuildID}
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 => 'Release Channel'
873ceb7769a8 Display client info
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff changeset
    19
  %= t td => $client_info->{ReleaseChannel}
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 => 'UUID'
873ceb7769a8 Display client info
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff changeset
    23
  %= t td => $self->param('uuid');
873ceb7769a8 Display client info
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff changeset
    24
</tr>