ui: display v0.2 version tag on admin settings page
This commit is contained in:
parent
06db9f3e55
commit
1694b50160
1 changed files with 12 additions and 1 deletions
|
|
@ -148,12 +148,23 @@
|
||||||
.status-bad{color:var(--warning);font-weight:600;}
|
.status-bad{color:var(--warning);font-weight:600;}
|
||||||
.copy-hint{font-size:.85rem;color:var(--muted);margin-top:.25rem;}
|
.copy-hint{font-size:.85rem;color:var(--muted);margin-top:.25rem;}
|
||||||
.path{word-break:break-all;font-family:monospace;font-size:.85rem;}
|
.path{word-break:break-all;font-family:monospace;font-size:.85rem;}
|
||||||
|
.version-tag{
|
||||||
|
display:inline-block;
|
||||||
|
background:#2563eb;
|
||||||
|
color:#fff;
|
||||||
|
font-size:.85rem;
|
||||||
|
font-weight:700;
|
||||||
|
padding:.25rem .6rem;
|
||||||
|
border-radius:.4rem;
|
||||||
|
margin-left:.75rem;
|
||||||
|
vertical-align:middle;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="topbar">
|
<div class="topbar">
|
||||||
<h1>Admin Settings</h1>
|
<h1>Admin Settings <span class="version-tag">v0.2</span></h1>
|
||||||
<div class="nav">
|
<div class="nav">
|
||||||
<a href="{{ url_for('admin_dashboard') }}">← Back to Dashboard</a>
|
<a href="{{ url_for('admin_dashboard') }}">← Back to Dashboard</a>
|
||||||
<a href="{{ url_for('admin_logout') }}">Log out</a>
|
<a href="{{ url_for('admin_logout') }}">Log out</a>
|
||||||
|
|
|
||||||
Reference in a new issue