diff options
Diffstat (limited to 'views/index.html')
| -rw-r--r-- | views/index.html | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/views/index.html b/views/index.html index 88f8e2e..61c8597 100644 --- a/views/index.html +++ b/views/index.html @@ -3,7 +3,8 @@ <div class="container"> <div class="row"> - <button id="btn-reload" class="btn btn-primary btn-raised"><span class="glyphicon glyphicon-refresh"></span> Reload</button> + <button id="btn-reload" class="btn btn-success btn-raised"><span class="glyphicon glyphicon-refresh"></span> Reload</button> + <a id="" class="btn btn-success btn-raised toggle"><span class="glyphicon glyphicon-refresh"></span> Show failure reasons</a> <table class="table table-striped table-hover "> <thead> <th>#</th> @@ -11,7 +12,7 @@ <th>Url</th> <th>Status</th> <!--th>Status Code</th--> - <th>Failure Reason</th> + <th class="hide">Failure Reason</th> </thead> <tbody> {{range $index, $results := .}} @@ -21,7 +22,7 @@ <td>{{.Url}}</td> <td>{{.Status}}</td> <!--td>{{.StatusCode}}</td--> - <td>{{.Reason}}</td> + <td class="hide">{{.Reason}}</td> </tr> {{end}} </tbody> |
