Files
kgpz_web/views/routes/akteure/person/body.gohtml
2025-09-24 18:00:33 +02:00

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 }}