forked from GithubBackups/healthchecks
"show usage" button next to each check
This commit is contained in:
parent
f02c809325
commit
820c7b1352
@ -51,7 +51,8 @@ def my_checks(request):
|
||||
"now": timezone.now(),
|
||||
"tags": counter.most_common(),
|
||||
"down_tags": down_tags,
|
||||
"grace_tags": grace_tags
|
||||
"grace_tags": grace_tags,
|
||||
"ping_endpoint": settings.PING_ENDPOINT
|
||||
}
|
||||
|
||||
return render(request, "front/my_checks.html", ctx)
|
||||
|
@ -62,18 +62,27 @@ table.table tr > th.th-name {
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
.show-usage {
|
||||
opacity: 0
|
||||
}
|
||||
|
||||
tr:hover .check-menu {
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
#show-urls.active, #show-emails.active {
|
||||
color: #333;
|
||||
tr:hover .show-usage {
|
||||
opacity: 1
|
||||
}
|
||||
|
||||
#checks-table .url-cell {
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.url-cell .base {
|
||||
color: #888;
|
||||
}
|
||||
|
||||
|
||||
.my-checks-url {
|
||||
font-family: "Lucida Console", Monaco, monospace;
|
||||
font-size: 11.7px;
|
||||
|
@ -176,7 +176,7 @@ $(function () {
|
||||
|
||||
});
|
||||
|
||||
$(".my-checks-url").click(function(e) {
|
||||
$(".show-usage").click(function(e) {
|
||||
var a = e.target;
|
||||
var url = a.getAttribute("href");
|
||||
var email = a.getAttribute("data-email");
|
||||
|
@ -1,5 +1,4 @@
|
||||
{% load hc_extras humanize %}
|
||||
|
||||
<table id="checks-table" class="table hidden-xs">
|
||||
<tr>
|
||||
<th></th>
|
||||
@ -39,13 +38,14 @@
|
||||
</div>
|
||||
</td>
|
||||
<td class="url-cell">
|
||||
<span class="my-checks-url">
|
||||
<span class="base">{{ ping_endpoint }}</span>{{ check.code }}
|
||||
</span>
|
||||
<a
|
||||
href="{{ check.url }}"
|
||||
class="my-checks-url"
|
||||
title="Click to show usage examples"
|
||||
data-email="{{ check.email }}"
|
||||
data-toggle="tooltip">
|
||||
{{ check.url }}
|
||||
class="btn btn-xs btn-default show-usage hidden-sm"
|
||||
data-email="{{ check.email }}">
|
||||
show usage
|
||||
</a>
|
||||
</td>
|
||||
<td class="timeout-cell">
|
||||
|
Loading…
x
Reference in New Issue
Block a user