2022-06-27 10:12:16 +00:00
|
|
|
{% import (
|
2022-07-06 08:46:01 +00:00
|
|
|
"net/http"
|
2022-07-08 08:26:13 +00:00
|
|
|
|
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/app/vmalert/utils"
|
2022-06-27 10:12:16 +00:00
|
|
|
) %}
|
|
|
|
|
2022-07-06 08:46:01 +00:00
|
|
|
|
|
|
|
{% func Footer(r *http.Request) %}
|
2022-07-08 08:26:13 +00:00
|
|
|
{%code prefix := utils.Prefix(r.URL.Path) %}
|
2021-09-07 19:39:22 +00:00
|
|
|
</main>
|
2022-07-06 08:46:01 +00:00
|
|
|
<script src="{%s prefix %}static/js/jquery-3.6.0.min.js" type="text/javascript"></script>
|
|
|
|
<script src="{%s prefix %}static/js/bootstrap.bundle.min.js" type="text/javascript"></script>
|
2021-09-07 19:39:22 +00:00
|
|
|
<script type="text/javascript">
|
|
|
|
function expandAll() {
|
|
|
|
$('.collapse').addClass('show');
|
|
|
|
}
|
|
|
|
function collapseAll() {
|
|
|
|
$('.collapse').removeClass('show');
|
|
|
|
}
|
|
|
|
|
|
|
|
$(document).ready(function() {
|
|
|
|
// prevent collapse logic on link click
|
|
|
|
$(".group-heading a").click(function(e) {
|
|
|
|
e.stopPropagation();
|
|
|
|
});
|
|
|
|
|
|
|
|
$(".group-heading").click(function(e) {
|
|
|
|
let target = $(this).attr('data-bs-target');
|
2022-05-30 23:55:28 +00:00
|
|
|
let el = $("#"+target);
|
2021-09-07 19:39:22 +00:00
|
|
|
new bootstrap.Collapse(el, {
|
|
|
|
toggle: true
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
var hash = window.location.hash.substr(1);
|
2022-05-30 23:55:28 +00:00
|
|
|
let group = $("#"+hash);
|
2021-09-07 19:39:22 +00:00
|
|
|
if (group.length > 0) {
|
|
|
|
group.click();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
{% endfunc %}
|