feat: добавлена пометка типа операции (Build/Push) в истории сборок Dockerfile
- Добавлена колонка 'Тип' во все таблицы истории сборок - Для push операций отображается registry вместо платформ - Сохранение пользователя при создании push лога - Исправлена ошибка с logger в push_docker_image endpoint - Улучшено отображение истории сборок с визуальными индикаторами
This commit is contained in:
20
app/templates/components/navbar.html
Normal file
20
app/templates/components/navbar.html
Normal file
@@ -0,0 +1,20 @@
|
||||
<nav class="bg-blue-600 text-white shadow-lg">
|
||||
<div class="container mx-auto px-4">
|
||||
<div class="flex justify-between items-center py-4">
|
||||
<div class="flex items-center space-x-4">
|
||||
<a href="/" class="text-2xl font-bold">DevOpsLab</a>
|
||||
<div class="flex space-x-4">
|
||||
<a href="/" class="hover:bg-blue-700 px-3 py-2 rounded">Dashboard</a>
|
||||
<a href="/roles" class="hover:bg-blue-700 px-3 py-2 rounded">Роли</a>
|
||||
<a href="/presets" class="hover:bg-blue-700 px-3 py-2 rounded">Preset'ы</a>
|
||||
<a href="/tests" class="hover:bg-blue-700 px-3 py-2 rounded">Тесты</a>
|
||||
<a href="/docker" class="hover:bg-blue-700 px-3 py-2 rounded">Docker</a>
|
||||
<a href="/vault" class="hover:bg-blue-700 px-3 py-2 rounded">Vault</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="flex items-center space-x-4">
|
||||
<span class="text-sm">v1.0.0</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
Reference in New Issue
Block a user