mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-12-15 16:30:55 +01:00
56f4058fe3
* make all links in vmalert relative, so links continue to work even if vmalert sits behind the proxy; * update vmalert's routing to always have component-unique path prefix, e.g. /vmalert; See https://github.com/VictoriaMetrics/VictoriaMetrics/issues/2825 Signed-off-by: hagen1778 <roman@victoriametrics.com>
49 lines
1.4 KiB
Plaintext
49 lines
1.4 KiB
Plaintext
{% import (
|
|
"net/http"
|
|
"strings"
|
|
) %}
|
|
|
|
|
|
{% func Footer(r *http.Request) %}
|
|
{%code
|
|
prefix := "/vmalert/"
|
|
if strings.HasPrefix(r.URL.Path, prefix) {
|
|
prefix = ""
|
|
}
|
|
%}
|
|
</main>
|
|
<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>
|
|
<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');
|
|
let el = $("#"+target);
|
|
new bootstrap.Collapse(el, {
|
|
toggle: true
|
|
});
|
|
});
|
|
|
|
var hash = window.location.hash.substr(1);
|
|
let group = $("#"+hash);
|
|
if (group.length > 0) {
|
|
group.click();
|
|
}
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|
|
{% endfunc %}
|