diff options
| author | Horus_Arch | 2015-02-26 02:40:52 +0100 |
|---|---|---|
| committer | Horus_Arch | 2015-02-26 02:40:52 +0100 |
| commit | 64ae2edb5a97f05f5592f58422adbc6ac089f9e8 (patch) | |
| tree | b375a73ec6bd0698d27cd01ef4307e62e9c1fa6d /views/index.html | |
| parent | 49ffcba2c3c4a19d147dd792d7f6c99b7545a491 (diff) | |
| download | statuspage-64ae2edb5a97f05f5592f58422adbc6ac089f9e8.tar.gz | |
Clean up. More backend code. Better UX and design.
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> |
