{% extends "admin/base.html" %} {% load i18n %} {% block breadcrumbs %}{% endblock %} {% block content %}
{# ── رأس الصفحة + صندوق البحث ── #}

{% trans "Deep Search" %}

{% trans "Global Search" %}

{% trans "Search across all apps and models from one place." %}

{% if query %}
{{ total }} {% trans "results" %} {{ app_count }} {% trans "apps" %} {% trans "for" %} “{{ query }}”
{% endif %}
{# ── النتائج: لكل تطبيق بطاقة تفتح على قائمة سجلات قابلة للضغط ── #} {% if query %} {% for group in results %}

{{ group.app_name }}

{{ group.models|length }} {% trans "models" %}
{% empty %}

{% trans "No results found for" %} “{{ query }}”

{% trans "Try a different word, or check the spelling." %}

{% endfor %} {% else %}

{% trans "Type a word to search across all apps and models." %}

{% endif %} {% if query and results %}

{% trans "Click any result to open it directly — records you cannot modify are shown locked." %}

{% endif %}
{% endblock %}