feat: apply new Мои Товары design system across all templates
Replace Pico CSS with custom design: dark sidebar layout, Golos Text + JetBrains Mono fonts, orange accent (#FF5500), new component classes (cards, tables, buttons, tags, toggles, alerts, tabs, login split-panel). Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -1,18 +1,24 @@
|
||||
{% extends "base.html" %}
|
||||
{% block title %}{{ title }} — ЭВОСИНК{% endblock %}
|
||||
{% block title %}{{ title }} — Мои Товары{% endblock %}
|
||||
{% block page_title %}{{ title }}{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<div class="row justify-center">
|
||||
<div class="col-sm-10 col-md-6 col-lg-5">
|
||||
<article class="card mt-5 text-center">
|
||||
<div class="card-body" style="padding: 2.5rem;">
|
||||
<h1 style="font-size:1.3rem;" class="mb-3">{{ title }}</h1>
|
||||
<p class="text-muted">{{ message }}</p>
|
||||
{% if link %}
|
||||
<a href="{{ link }}" role="button" class="mt-2">{{ link_text }}</a>
|
||||
{% endif %}
|
||||
</div>
|
||||
</article>
|
||||
<div style="display:flex;align-items:center;justify-content:center;min-height:60vh;">
|
||||
<div class="card" style="max-width:440px;width:100%;text-align:center;padding:40px 32px;">
|
||||
<div style="font-size:48px;margin-bottom:16px;">
|
||||
{% if 'ошибка' in title|lower or 'error' in title|lower %}
|
||||
<i class="bi bi-x-circle" style="color:#E53935;"></i>
|
||||
{% elif 'успешно' in title|lower or 'готово' in title|lower or 'подтвержден' in title|lower %}
|
||||
<i class="bi bi-check-circle" style="color:#17A865;"></i>
|
||||
{% else %}
|
||||
<i class="bi bi-info-circle" style="color:#3B6FFF;"></i>
|
||||
{% endif %}
|
||||
</div>
|
||||
<div class="pg-title" style="margin-bottom:8px;">{{ title }}</div>
|
||||
<div style="font-size:13px;color:#5C6278;margin-bottom:20px;">{{ message }}</div>
|
||||
{% if link %}
|
||||
<a href="{{ link }}" class="btn btn-primary">{{ link_text }}</a>
|
||||
{% endif %}
|
||||
</div>
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
||||
Reference in New Issue
Block a user