Advertisement
Guest User

Untitled

a guest
Feb 19th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.87 KB | None | 0 0
  1. <table class="table table-striped" height="100%">
  2. <thead>
  3.  
  4.  
  5. <tr>
  6.  
  7. <th width="170px" class="fileName alignCenter"><label class="titLabel">Date Event</label></th>
  8. <th width="170px" class="fileName alignCenter"><label class="titLabel">Event Type</label></th>
  9. <th width="150px" class="alignCenter"><label class="titLabel">&nbsp;RE1A</label></th>
  10. <th width="150px" class="alignCenter"><label class="titLabel">&nbsp;RE2A</label></th>
  11. <th width="150px" class="alignCenter"><label class="titLabel">&nbsp;RE3A</label></th>
  12. <th width="150px" class="alignCenter"><label class="titLabel">&nbsp;RE4A</label></th>
  13. <th width="150px" class="alignCenter"><label class="titLabel">&nbsp;RE5A</label></th>
  14. <th width="150px" class="alignCenter"><label class="titLabel">&nbsp;RE6A</label></th>
  15. <th width="150px" class="alignCenter"><label class="titLabel">&nbsp;RE7A</label></th>
  16. <th width="150px" class="alignCenter"><label class="titLabel">&nbsp;Total Event</label></th>
  17. </tr>
  18.  
  19.  
  20. </thead>
  21. <tbody>
  22.  
  23. <tr id="no-results" ng-hide="{{noResults}}" ng-show="{{!noResults}}">
  24. </tr>
  25. <tr ng-repeat="output in result">
  26. <td width="170px" class="alignCenter"><label>&nbsp;{{output.referenceDate | date:'dd/MM/yyyy'}}</label></td>
  27. <td width="170px" class="alignCenter"><label>&nbsp;{{output.eventType}}</label></td>
  28. <td width="170px" class="alignCenter"><label>&nbsp;{{output.re1A}}</label></td>
  29. <td width="170px" class="alignCenter"><label>&nbsp;{{output.re2A}}</label></td>
  30. <td width="170px" class="alignCenter"><label>&nbsp;{{output.re3A}}</label></td>
  31. <td width="170px" class="alignCenter"><label>&nbsp;{{output.re4A}}</label></td>
  32. <td width="170px" class="alignCenter"><label>&nbsp;{{output.re5A}}</label></td>
  33. <td width="170px" class="alignCenter"><label>&nbsp;{{output.re6A}}</label></td>
  34. <td width="170px" class="alignCenter"><label>&nbsp;{{output.re7A}}</label></td>
  35. <td width="170px" class="alignCenter"><label>&nbsp;{{(output.re1A)+(output.re2A)+(output.re3A)+(output.re4A)+(output.re5A)+(output.re6A)+(output.re7A)}}</label></td>
  36.  
  37. </tr>
  38.  
  39.  
  40. <tr class="primary">
  41. <td width="170px" class="alignCenter" bgcolor="#044a75"><label class="titLabel">Total RE</label></td>
  42. <td width="170px" class="alignCenter" bgcolor="#044a75" ><label class="titLabel">{{}}</label></td>
  43. <td width="170px" class="alignCenter" bgcolor="#044a75"><label class="titLabel">{{totalizarRE1A()}}</label></td>
  44. <td width="170px" class="alignCenter" bgcolor="#044a75"><label class="titLabel">{{totalizarRE2A()}}</label></td>
  45. <td width="170px" class="alignCenter" bgcolor="#044a75"><label class="titLabel">{{totalizarRE3A()}}</label></td>
  46. <td width="170px" class="alignCenter" bgcolor="#044a75"><label class="titLabel">{{totalizarRE4A()}}</label></td>
  47. <td width="170px" class="alignCenter" bgcolor="#044a75"><label class="titLabel">{{totalizarRE5A()}}</label></td>
  48. <td width="170px" class="alignCenter" bgcolor="#044a75"><label class="titLabel">{{totalizarRE6A()}}</label></td>
  49. <td width="170px" class="alignCenter" bgcolor="#044a75"><label class="titLabel">{{totalizarRE7A()}}</label></td>
  50. <td width="170px" class="alignCenter" bgcolor="#044a75"><label class="titLabel">{{totalEvent()}}</label></td>
  51. </tr>
  52.  
  53.  
  54. </tbody>
  55.  
  56.  
  57. </table>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement