A static deletion window notice shows Archived project notes, delete after September 15, 2026, 30 days remaining, and Scheduled review.

Program

Deletion window notices should make timing and status visible without scheduling jobs, deleting records, or checking live account storage.

deletion_window_notice.html
Visuals: captured from real browser rendering
<section class="delete-window" aria-labelledby="delete-window-title">
  <h2 id="delete-window-title">Deletion window</h2>
  <dl>
    <div><dt>Item</dt><dd>Archived project notes</dd></div>
    <div><dt>Delete after</dt><dd><time datetime="2026-09-15">September 15, 2026</time></dd></div>
    <div><dt>Window</dt><dd>30 days remaining</dd></div>
    <div><dt>Status</dt><dd><span class="badge">Scheduled review</span></dd></div>
  </dl>
  <p class="note">Static deletion window only; no route, save, export, download, delete, schedule, mutate, or job service runs.</p>
</section>
<style>
  .delete-window { display: grid; gap: 10px; max-width: 38rem; border: 1px solid #b45309; padding: 12px; background: #fffbeb; }
  .delete-window dl { display: grid; gap: 8px; margin: 0; }
  .delete-window dl div { display: grid; grid-template-columns: 8rem 1fr; gap: 8px; }
  .delete-window dt { color: #475569; }
  .delete-window dd, .note { margin: 0; }
  .badge { border-radius: 999px; background: #fef3c7; padding: 2px 8px; }
  .note { color: #475569; }
</style>
  1. Label the deletion window notice.

    The section is labelled by its visible heading.
    The section is labelled by its visible heading.
  2. Show the item row.

    The item is exact pinned data.
    The item is exact pinned data.
  3. Show the delete-after date.

    The delete-after date is exact pinned data.
    The delete-after date is exact pinned data.
  4. Show the window readback.

    The window is exact pinned data.
    The window is exact pinned data.
  5. Show the status readback.

    The status is visible as a static badge.
    The status is visible as a static badge.
  6. Check deletion window honesty.

    Item, delete-after date, window, status, and no job service.
    Item, delete-after date, window, status, and no job service.
static notice The section heading names the deletion window notice surface.
window readback Item, delete-after date, window, and status are exact pinned data.
no job service The lesson should not imply delete APIs, schedule/job APIs, database APIs, account APIs, or mutation APIs.