fix: bust admin stylesheet cache
Some checks failed
CI / test (pull_request) Has been cancelled
CI / deploy (pull_request) Has been cancelled

This commit is contained in:
2026-09-15 17:57:59 +03:00
parent 711c6ae7b0
commit 8102556862
7 changed files with 12 additions and 8 deletions

View File

@@ -4,7 +4,7 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{% block title %}MIEM Employees{% endblock %}</title>
<link rel="stylesheet" href="/static/admin.css">
<link rel="stylesheet" href="/static/admin.css?v={{ frontend_version }}">
</head>
<body class="admin">
<a class="admin__skip-link" href="#main-content">Перейти к содержимому</a>

View File

@@ -4,7 +4,7 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Вход · MIEM Employees</title>
<link rel="stylesheet" href="/static/admin.css">
<link rel="stylesheet" href="/static/admin.css?v={{ frontend_version }}">
</head>
<body class="admin">
<main class="admin__main">

View File

@@ -1,3 +1,3 @@
APP_VERSION = "0.8.10"
FRONTEND_VERSION = "0.8.10"
BACKEND_VERSION = "0.8.10"
APP_VERSION = "0.8.11"
FRONTEND_VERSION = "0.8.11"
BACKEND_VERSION = "0.8.11"