← All templates

Audit Log

Security event log with multi-filter toolbar and timestamped event table.

CRUD
Open in editor →
Start typing to see your wireframe…

The Wiremark source

This is the entire template — edit it live in the editor, or paste it into any .wiremark file.

wiremarkUI
  sidebar SD {
    nav "Dashboard"
    nav "Users"
    nav "Audit Log" active
    nav "Security"
  }
  header H "Security"

  page AUDIT "Audit Log" {
    H
    SD

    toolbar {
      search "Search events…"
      select "All event types"
      select "All users"
      select "Last 7 days"
      button "Export" primary
    }

    table "Events" {
      columns "Timestamp", "User", "Action", "Resource", "IP Address", "Status"
      row "2024-04-28 14:32", "alice@example.com", "login", "auth", "203.0.113.4", "Success"
      row "2024-04-28 14:28", "bob@example.com", "export_csv", "users", "198.51.100.12", "Success"
      row "2024-04-28 13:55", "carol@example.com", "delete_record", "orders/#4821", "192.0.2.33", "Success"
      row "2024-04-28 13:12", "unknown", "login", "auth", "198.18.0.77", "Failed"
      row "2024-04-28 12:47", "david@example.com", "update_role", "users/alice", "203.0.113.4", "Success"
    }
  }