~larry-e-works/uci-engine/amqp-to-kombu

« back to all changes in this revision

Viewing changes to nf-stats-service/web_static/graphs/lrt.html

  • Committer: Larry Works
  • Date: 2014-09-30 18:08:31 UTC
  • mfrom: (762.1.55 uci-engine)
  • Revision ID: larry.works@canonical.com-20140930180831-cpztlnifhc47ah69
Massive merge from trunk, no conflicts.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<div ng-controller="lrtCtrl">
 
2
  <div style="text-align: center"><a href="https://errors.ubuntu.com/user/6ef5699f2b73679bb94cc77874f81c4822482114dd8bf912741713eb15bf61533b5d8176f0d870f758cc6f241445ffd3359debe1616c832a8ab3b7626d9ed369">Crash files can be found on this link</a></div>
 
3
 
 
4
  <nvd3 options="options" data="graphData" api="api"></nvd3>
 
5
 
 
6
  <table>
 
7
    <tr ng-repeat="row in tableData">
 
8
      <td><b>{{row.key}}:</b></td>
 
9
      <td ng-repeat="item in row.values">
 
10
        {{numberFormatter(tableDataFormStrings[$parent.$index],
 
11
        tableDataUnitStrings[$parent.$index])(item.value)}}
 
12
      </td>
 
13
    </tr>
 
14
    <tr>
 
15
      <td><b>Image:</b></td>
 
16
      <td ng-repeat="item in tableData[0].values">{{(item.image)}}</td>
 
17
    </tr>
 
18
  </table>
 
19
</div>