Skip to content

Audit Report Template

DodaTech 3 min read

title: "Audit Report Template" weight: 19 description: "Learn how to create a structured accessibility audit report with executive summary, methodology, detailed findings, severity distribution, remediation plan, and appendices for different stakeholders." date: 2026-06-28 lastmod: 2026-06-28 tags: [accessibility, auditing]


An accessibility audit report is a structured document that communicates findings to different audiences: an executive summary for leadership, a detailed findings section for developers, and appendices with raw data and methodology for compliance documentation.

## What You'll Learn

You will structure audit reports for different audiences, write executive summaries, present findings clearly, and create actionable remediation sections.

## Why It Matters

The audit report is the primary deliverable of an accessibility audit. A well-structured report ensures developers can fix issues, managers can track progress, and executives understand compliance status and legal risk.

## Real-World Use

An auditor delivers a 40-page report with an executive summary stating the site fails WCAG AA with 47 violations. The detailed findings section shows each issue with code examples. The development team uses the remediation section as their sprint backlog.

## Report Structure

```mermaid
flowchart TD
  A[Cover Page] --> B[Executive Summary]
  B --> C[Scope and Methodology]
  C --> D[Summary of Findings]
  D --> E[Severity Distribution]
  E --> F[Detailed Findings]
  F --> G[Remediation Plan]
  G --> H[Appendices]
  H --> I[Raw Tool Outputs]
  H --> J[Screenshots]
  H --> K[VPAT]

Report Sections

Each section serves a specific audience. Write clearly and include actionable information.

<!-- The report should include sample code references -->
<!-- Issue A11Y-015: Missing label on search input -->
<form role="search">
  <input type="search" id="search-input">
  <button type="submit">Search</button>
</form>

Report entry:

  • Finding: Search input has no accessible label
  • WCAG: 1.1.1 Non-text Content, 3.3.2 Labels or Instructions
  • Severity: Critical
  • Users affected: Screen reader users
  • Fix: Add aria-label="Search" to the input element
/* Severity distribution in visual format */
.severity-chart {
  display: flex;
  gap: 1rem;
}
.severity-bar {
  height: 20px;
  border-radius: 4px;
}
// Report generator configuration
const report = {
  title: 'Accessibility Audit Report',
  client: 'Acme Corp',
  date: '2026-06-28',
  auditor: 'DodaTech Accessibility Team',
  summary: {
    pagesTested: 15,
    complianceLevel: 'Does not meet WCAG 2.2 AA',
    criticalIssues: 4,
    seriousIssues: 8,
    moderateIssues: 12,
    minorIssues: 6,
    estimatedRemediationEffort: '4-6 sprints'
  },
  findings: []
};

Common Mistakes

  • Writing only for technical audiences
  • Not including an executive summary
  • Hiding the compliance verdict in the appendix
  • Using inconsistent formatting across findings
  • Not providing effort estimates for fixes
  • Including raw tool output without interpretation
  • Forgetting to version and date the report

Practice and Challenge

Practice 1: Write an executive summary for a sample audit report. Practice 2: Structure a detailed findings table with all required columns. Practice 3: Create a severity distribution chart for a set of findings. Practice 4: Write a methodology section describing how the audit was performed. Practice 5: Build a remediation plan timeline from prioritized issues.

Challenge: Create a complete audit report template in HTML/CSS or Markdown that includes: cover page, executive summary template, scope section, methodology section, findings table (sortable by severity/WCAG/page), severity distribution chart, remediation roadmap, and appendix sections. Make it reusable for any audit.

FAQ

How long should an audit report be?

10-40 pages depending on scope. Executive summary should be 1-2 pages. Detailed findings should be the bulk of the report.

Should I include raw tool output?

Include a summary in the main report and full raw output in appendices.

How do I present the compliance verdict?

State clearly in the executive summary: the site meets or does not meet WCAG AA. Partial compliance is non-compliance.

Should I include a VPAT?

Include a VPAT as an appendix if the client needs one for procurement.

What format should the report use?

PDF for distribution, HTML for online viewing, and a data format (JSON/CSV) for issue tracking import.

How do I handle confidential information?

Do not include credentials, internal URLs, or sensitive business information in the report.

Mini Project

Create an audit report for a sample page. Include all sections: executive summary, scope, methodology, findings (at least 10), severity distribution, remediation plan, and appendices. Use real data from an axe-core scan and a manual review of the same page.

What's Next

Remediation Planning covers creating actionable remediation plans from audit findings.

Built by the developers of DodaTech

Doda Browser, DodaZIP & Durga Antivirus Pro