feature(superuser panel): ability to view logs
users would like the ability to view build logs in the superuser panel [None]
This commit is contained in:
parent
d8e08fd5df
commit
dae93dce78
10 changed files with 224 additions and 27 deletions
18
static/directives/super-user-build-logs.html
Normal file
18
static/directives/super-user-build-logs.html
Normal file
|
@ -0,0 +1,18 @@
|
|||
<!-- Messages tab -->
|
||||
<div class="super-user-build-logs-element">
|
||||
<div class="manager-header" header-title="Build Logs">
|
||||
<span class="build-log-view">
|
||||
<input class="form-control" type="text" ng-model="buildParams.buildUuid" placeholder="Build ID"
|
||||
style="margin-right: 10px;">
|
||||
</span>
|
||||
<button class="create-button btn btn-primary" ng-click="loadBuild()">
|
||||
<i class="fa fa-plus" style="margin-right: 6px;"></i>Get Logs
|
||||
</button>
|
||||
</div>
|
||||
<div class="build-logs-view"
|
||||
build="build"
|
||||
use-timestamps="showLogTimestamps"
|
||||
build-updated="setUpdatedBuild(build)"
|
||||
is-super-user="true"
|
||||
ng-show="build"></div>
|
||||
</div>
|
Reference in a new issue