Files
DevOpsLab/app/templates/pages/errors/error.html
Сергей Антропов 1fbf9185a2 feat: добавлена пометка типа операции (Build/Push) в истории сборок Dockerfile
- Добавлена колонка 'Тип' во все таблицы истории сборок
- Для push операций отображается registry вместо платформ
- Сохранение пользователя при создании push лога
- Исправлена ошибка с logger в push_docker_image endpoint
- Улучшено отображение истории сборок с визуальными индикаторами
2026-02-15 22:59:02 +03:00

42 lines
1.5 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends "base.html" %}
{% block title %}{{ error_code }} - {{ error_title }} - DevOpsLab{% endblock %}
{% block content %}
<div class="container-fluid py-5">
<div class="row justify-content-center">
<div class="col-12 col-md-8 col-lg-6">
<div class="text-center">
<div class="error-code mb-4">
<h1 class="display-1 fw-bold text-primary">{{ error_code }}</h1>
</div>
<h2 class="h3 mb-3">{{ error_title }}</h2>
{% if error_message %}
<p class="text-muted mb-4">{{ error_message }}</p>
{% endif %}
{% if error_description %}
<div class="alert alert-info mb-4">
<i class="fas fa-info-circle me-2"></i>
{{ error_description }}
</div>
{% endif %}
<div class="d-flex gap-2 justify-content-center flex-wrap">
<a href="/" class="btn btn-primary">
<i class="fas fa-home me-2"></i>
На главную
</a>
<button onclick="history.back()" class="btn btn-outline-secondary">
<i class="fas fa-arrow-left me-2"></i>
Назад
</button>
</div>
</div>
</div>
</div>
</div>
{% endblock %}