Files
Leopoldadmin 2cf433a01c feat(T04): contact management + USt-IdNr. validation + contact UI
- Contact model: company, role (kaeufer/verkaeufer/beide), soft-delete
- ContactPerson model: 1:N relation with CASCADE delete
- USt-IdNr. validation: DE + 10 EU countries
- Contact CRUD: 7 API endpoints with RBAC, search/filter/paginate
- Frontend: ContactList, ContactForm, ContactDetail with EU/Inland toggle
- 73 backend tests (91% coverage), 20 frontend tests
2026-07-14 12:14:21 +02:00

11 lines
278 B
TypeScript

import { ContactForm } from '@/components/contacts/ContactForm';
export default function NeuerKontaktPage() {
return (
<div className="space-y-6">
<h1 className="text-2xl font-bold text-text">Neuer Kontakt</h1>
<ContactForm mode="create" />
</div>
);
}