diff options
| author | Ed Tanous <ed.tanous@intel.com> | 2017-10-24 17:04:52 -0700 |
|---|---|---|
| committer | Ed Tanous <ed.tanous@intel.com> | 2017-10-24 17:10:33 -0700 |
| commit | 710adfcf07d73b00a9bb6f8bf977cdb0897fa4b8 (patch) | |
| tree | 15b50e4a242788ad4d6ce385cf2e7111c477535c /static/partial-eventlog.html | |
| parent | ba9f9a6cebfbb7a12ecf869afa0cdc5aef9c8372 (diff) | |
| download | bmcweb-710adfcf07d73b00a9bb6f8bf977cdb0897fa4b8.tar.gz bmcweb-710adfcf07d73b00a9bb6f8bf977cdb0897fa4b8.zip | |
Add the redfish static files to the build
...And delete the old webserver static files from the repo.
Move $metadata to a static file, as that's really where it belongs.
Change-Id: I2caeee7cd779b7c07cfc10cd693459105656671f
Diffstat (limited to 'static/partial-eventlog.html')
| -rw-r--r-- | static/partial-eventlog.html | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/static/partial-eventlog.html b/static/partial-eventlog.html deleted file mode 100644 index 548eb1e..0000000 --- a/static/partial-eventlog.html +++ /dev/null @@ -1,53 +0,0 @@ -<div class="container" ng-controller="selController"> - <div class="row"> - - <table class="table table-striped table-condensed"> - <thead> - <tr> - <th class="fit">ID</th> - <th class="fit">Timestamp</th> - <th class="fit">Sensor Name</th> - <th class="fit"> - <!-- Controller button --> - <div class="btn-group" style="cursor: pointer; cursor: hand;" uib-dropdown is-open="status.isopen" auto-close="outsideClick"> - <div id="single-button" type="button" class="" uib-dropdown-toggle> - Controller <span class="caret"></span> - </div> - <ul class="dropdown-menu" uib-dropdown-menu role="menu" aria-labelledby="dropdownMenu"> - <li role="menuitem"><a data-ng-click="checkAll()"><i class="fa fa-check-circle"></i> Check All</a></li> - <li role="menuitem"><a data-ng-click="uncheckAll()"><i class="fa fa-times-circle"></i> Uncheck All</a></li> - <li class="divider"></li> - <li role="menuitem" data-ng-repeat="company in unique_columns.controller"> <a data-ng-click="setSelectedController()">{{company}}<span data-ng-class="isChecked(company)"></span></a> - </li> - </ul> - </div> - </th> - <th class="fit">Severity</th> - <th class="fit">Sensor Type</th> - <th>Description</th> - </tr> - </thead> - <tbody> - <tr ng-repeat="entry in filtered_and_sliced_sel"> - <td class="fit">{{ entry.id }}</td> - <td class="fit">{{ entry.timestamp * 1000 | date : 'yyyy-MM-dd HH:mm:ss'}}</td> - <td class="fit">Sensor Name</td> - <td class="fit">{{ entry.generator_name }}</td> - <td class="fit">{{ entry.event_severity }}</td> - <td class="fit">{{ entry.sensor_type_string }}</td> - <td>{{ entry.description_string }}</td> - </tr> - </tbody> - </table> - - </div> - <pagination uib-pagination - ng-model="current_page" - items-per-page="items_per_page" - total-items="filtered_sel.length" - max-size="max_size" - boundary-links="true" - boundary-link-numbers="true" rotate="true" force-ellipses="true"> - </pagination> - -</div>
\ No newline at end of file |

