{% extends "base.html" %} {% block title %}{{ title }}{% endblock %} {% block content %}
{{ subtitle or "Преглед на податоци" }}
| {{ h.replace('_',' ')|title }} | {% endfor %}
|---|
| {# badge за ID полиња #} {% if key.endswith('id') and v is not none %} #{{ v }} {% elif 'status' in key and v %} {% set vs = v|string|lower %} {% set cls = 'secondary' %} {% if 'успеш' in vs or 'done' in vs or 'complete' in vs %}{% set cls = 'success' %}{% endif %} {% if 'warn' in vs or 'pending' in vs or 'очек' in vs %}{% set cls = 'warning' %}{% endif %} {% if 'fail' in vs or 'error' in vs or 'греш' in vs %}{% set cls = 'danger' %}{% endif %} {{ v }} {% else %} {% if v is string and v|length > 80 %} {{ v[:80] }}… {% else %} {{ v if v is not none and v != '' else '—' }} {% endif %} {% endif %} | {% endfor %}