mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
84e7c517d3
* 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>
100 lines
No EOL
2.5 KiB
Text
100 lines
No EOL
2.5 KiB
Text
{% import (
|
|
"strings"
|
|
"net/http"
|
|
"path"
|
|
) %}
|
|
|
|
{% func Header(r *http.Request, navItems []NavItem, title string) %}
|
|
{%code
|
|
prefix := "/vmalert/"
|
|
if strings.HasPrefix(r.URL.Path, prefix) {
|
|
prefix = ""
|
|
}
|
|
%}
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>vmalert{% if title != "" %} - {%s title %}{% endif %}</title>
|
|
<link href="{%s prefix %}static/css/bootstrap.min.css" rel="stylesheet" />
|
|
<style>
|
|
body{
|
|
min-height: 75rem;
|
|
padding-top: 4.5rem;
|
|
}
|
|
.group-heading {
|
|
cursor: pointer;
|
|
padding: 5px;
|
|
margin-top: 5px;
|
|
position: relative;
|
|
}
|
|
.group-heading .anchor {
|
|
position:absolute;
|
|
top:-60px;
|
|
}
|
|
.group-heading span {
|
|
float: right;
|
|
margin-left: 5px;
|
|
margin-right: 5px;
|
|
}
|
|
.group-heading:hover {
|
|
background-color: #f8f9fa!important;
|
|
}
|
|
.table {
|
|
table-layout: fixed;
|
|
}
|
|
.table .error-cell{
|
|
word-break: break-word;
|
|
font-size: 14px;
|
|
}
|
|
pre {
|
|
overflow: scroll;
|
|
min-height: 30px;
|
|
max-width: 100%;
|
|
}
|
|
pre::-webkit-scrollbar {
|
|
-webkit-appearance: none;
|
|
width: 0px;
|
|
height: 5px;
|
|
}
|
|
pre::-webkit-scrollbar-thumb {
|
|
border-radius: 5px;
|
|
background-color: rgba(0,0,0,.5);
|
|
-webkit-box-shadow: 0 0 1px rgba(255,255,255,.5);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
{%= printNavItems(r, title, navItems) %}
|
|
<main class="px-2">
|
|
{% endfunc %}
|
|
|
|
|
|
{% code
|
|
type NavItem struct {
|
|
Name string
|
|
Url string
|
|
}
|
|
%}
|
|
|
|
{% func printNavItems(r *http.Request, current string, items []NavItem) %}
|
|
{%code
|
|
prefix := "/vmalert/"
|
|
if strings.HasPrefix(r.URL.Path, prefix) {
|
|
prefix = ""
|
|
}
|
|
%}
|
|
<nav class="navbar navbar-expand-md navbar-dark fixed-top bg-dark">
|
|
<div class="container-fluid">
|
|
<div class="collapse navbar-collapse" id="navbarCollapse">
|
|
<ul class="navbar-nav me-auto mb-2 mb-md-0">
|
|
{% for _, item := range items %}
|
|
<li class="nav-item">
|
|
<a class="nav-link{% if current == item.Name %} active{% endif %}" href="{%s path.Join(prefix,item.Url) %}">
|
|
{%s item.Name %}
|
|
</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
</nav>
|
|
{% endfunc %} |