mirror of
https://github.com/Theodor-Springmann-Stiftung/kgpz_web.git
synced 2025-10-29 00:55:32 +00:00
18 lines
630 B
Plaintext
18 lines
630 B
Plaintext
{{ $agent := index $.model.Agents .model.Search }}
|
|
{{ if not $agent }}
|
|
<div class="max-w-7xl mx-auto px-8 py-8">
|
|
<div class="bg-red-50 border border-red-200 rounded-lg p-6">
|
|
<div class="flex items-center">
|
|
<i class="ri-error-warning-line text-red-600 text-2xl mr-3"></i>
|
|
<span class="text-red-800 text-lg">Person nicht gefunden: <strong>{{ .model.Search }}</strong></span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{ else }}
|
|
<div class="w-full max-w-7xl mx-auto px-8 py-8">
|
|
<div class="bg-white px-6 py-6 rounded w-full">
|
|
{{ template "_back_navigation" $agent }}
|
|
{{ template "_akteur" $agent }}
|
|
</div>
|
|
</div>
|
|
{{ end }} |