DetailHeader

App

Detay/kayıt sayfaları için sayfa başlığı. title, subtitle, status badge, aksiyon butonları ve opsiyonel sekme navigasyonu.

With actions, no tabs

Preview

Invoice #1042

PAID

Created 3 days ago · Due Jan 15, 2026

Code
<%- include('modules/app/DetailHeader', {
  title:         'Invoice #1042',
  subtitle:      'Created 3 days ago · Due Jan 15, 2026',
  status:        'PAID',
  statusVariant: 'success',
  actionsContent: `
    <%- include('modules/ui/Button', { variant: 'outline', iconLeft: '', children: 'Edit' }) %>
    <%- include('modules/ui/Button', { variant: 'danger',  iconLeft: '',  children: 'Delete' }) %>
  `
}) %>

With tabs

Preview

Project Alpha

ACTIVE

Started Jan 2026 · 5 members

Code
<%- include('modules/app/DetailHeader', {
  title:    'Project Alpha',
  subtitle: 'Started Jan 2026 · 5 members',
  status:   'ACTIVE',
  statusVariant: 'success',
  tabs: [
    { value: 'overview', label: 'Overview' },
    { value: 'tasks',    label: 'Tasks'    },
    { value: 'members',  label: 'Members'  },
    { value: 'settings', label: 'Settings' },
  ],
  activeTab: req.query.tab || 'overview',
  actionsContent: `<%- include('modules/ui/Button', { variant: 'outline', iconLeft: '', children: 'Settings' }) %>`
}) %>
Source modules/app/DetailHeader.ejs