shop-old/themes/admin/templates/admin2000/k-editor/header.tpl
2026-04-20 01:03:43 +02:00

35 lines
898 B
Smarty
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{* Header: Breadcrumb + Titel + Messages *}
<div class="admin2000-editor-header">
<div class="admin2000-breadcrumb">
<a href="./index.php?admin_modul=admin2000&section=stammdaten&page=kunden">Kunden</a>
<span class="admin2000-breadcrumb-separator"></span>
<span class="admin2000-breadcrumb-current">
{if $customer_data.company}
{$customer_data.company}
{else}
{$customer_data.firstname} {$customer_data.surname}
{/if}
</span>
</div>
<h1 class="admin2000-editor-title">
Kunde bearbeiten
<span class="admin2000-editor-id">#{$customer_id}</span>
</h1>
</div>
{* Success Message *}
{if $save_success}
<div class="admin2000-success-box">
<strong>✅ Erfolgreich gespeichert!</strong> Die Kundendaten wurden aktualisiert.
</div>
{/if}
{* Error Message *}
{if isset($error)}
<div class="admin2000-error-box">
<strong>⚠️ Fehler:</strong> {$error}
</div>
{/if}