optimize retrieve logic

This commit is contained in:
team 1
2026-04-14 08:55:01 +02:00
parent c23cfc664f
commit 41aadbddea
11 changed files with 89 additions and 29 deletions

View File

@@ -18,14 +18,17 @@
{# ============================= #}
{# Top Navigation #}
{# ============================= #}
{% if app.user %}
<nav class="navbar navbar-dark bg-black border-bottom border-secondary px-3">
<div class="navbar-brand fw-semibold text-info">
<div>
<img src="/assets/img/logo.png" style="max-width: 120px;">
</div>
<div class="fs-6">RAG-System</div>
</div>
<div class="small">powered by mitho®</div>
<div class="ms-auto d-flex align-items-center gap-3">
<nav class="navbar navbar-dark bg-black border-bottom border-secondary px-3">
<div class="navbar-brand fw-semibold text-info">
RetrieX RAG-System
</div>
<div class="small">powered by mitho®</div>
<div class="ms-auto d-flex align-items-center gap-3">
{% if app.user %}
<span class="small text-light">
{{ app.user.userIdentifier }}
</span>
@@ -34,10 +37,10 @@
href="{{ path('admin_logout') }}">
Logout
</a>
{% endif %}
</div>
</nav>
</div>
</nav>
{% endif %}
{# ============================= #}
{# Layout Container #}
{# ============================= #}