{{define "content"}}

Customer Information

{{with .Customer}}

Name: {{.Name}}

Email: {{.Spec.Email}}

Billing Plan: {{.Spec.BillingPlan}}

Status: {{.Status.BillingStatus}}

{{else}}

No customer information available

{{end}}

Resource Usage

{{with .Usage}}

CPU: {{.ResourceRequirements.CPU}}

Memory: {{.ResourceRequirements.Memory}}

Deployments: {{.Deployments}}

Clusters: {{.Clusters}}

{{else}}

No usage information available

{{end}}
{{end}}