bosun.org@v0.0.0-20210513094433-e25bc3e69a1f/cmd/bosun/web/static/partials/computations.html (about) 1 <table class="table table-striped table-condensed"> 2 <thead ng-show="header"> 3 <tr> 4 <th ng-bind="header"></th> 5 <th>Value</th> 6 </tr> 7 </thead> 8 <tbody> 9 <tr ng-repeat="c in computations | reverse" ng-if="$index < 3 || show"> 10 <td style="word-break: break-all;"> 11 <a ng-href="/expr?expr={{btoa(c.Text) + timeParam}}" ng-bind="c.Text"></a> 12 </td> 13 <td ng-bind="c.Value | nfmt"></td> 14 </tr> 15 <tr ng-show="computations.length > 3 && !show"> 16 <td colspan="2"><button class="btn btn-default btn-xs" ng-click="show = true">{{computations.length - 3}} more ...</button></td> 17 </tr> 18 </tbody> 19 </table>