Project Status Report Template
Share a project health snapshot with milestones, owners, dates, risks, and next steps. A weekly client or stakeholder update generated directly from your project data.
- Paper format
- A4
- Included
- HTML layout + sample JSON
- Customization
- Content, colors, typography
- Rendering
- Handlebars + Chromium
Preview the sample document, then make it yours. Change the layout in your editor or clone it into your RelayPDF dashboard to create an editable draft.
Open full-size previewFrom a sample to
your next document.
This layout uses standard HTML and CSS with Handlebars fields. The preview is rendered from the downloadable source and sample data shown below.
Use the sample as a starting point. Your application supplies dates, labels, and calculated amounts; the template handles their presentation.
Personalize the design
Update the organization name, typography, and CSS accent colors. Replace the sample wording with content appropriate to your business.
Connect your data
Keep the field structure in the sample JSON and replace its values. Repeating arrays create the document’s rows or sections.
Preview, publish, generate
Test with your longest content. Publish the draft, then generate PDFs using its templateId and fresh templateData.
What you can customize
| Field | Purpose |
|---|---|
team | Editable document content. Replace the sample value with your own data. |
week | Editable document content. Replace the sample value with your own data. |
project | Editable document content. Replace the sample value with your own data. |
status | Editable document content. Replace the sample value with your own data. |
lead | Editable document content. Replace the sample value with your own data. |
launch | Editable document content. Replace the sample value with your own data. |
milestones | Project milestones with owners, deadlines, and current status. |
risks | Editable document content. Replace the sample value with your own data. |
nextSteps | Editable document content. Replace the sample value with your own data. |
Start with real sample data
Download sample JSON ↓Inspect sample JSON
{
"team": "Acme Studio",
"week": "Week 08 / September 7, 2026",
"project": "Northstar customer portal",
"status": "On track",
"lead": "Alex Morgan",
"launch": "October 12, 2026",
"milestones": [
{
"name": "Discovery & requirements",
"owner": "Strategy",
"due": "Aug 7",
"status": "Complete"
},
{
"name": "Design system",
"owner": "Design",
"due": "Aug 28",
"status": "Complete"
},
{
"name": "Portal implementation",
"owner": "Engineering",
"due": "Sep 25",
"status": "In progress"
},
{
"name": "Acceptance testing",
"owner": "Client team",
"due": "Oct 5",
"status": "Scheduled"
}
],
"risks": "Client content approval is due September 14. A delay could reduce the time available for acceptance testing.",
"nextSteps": "Complete the account overview, review billing flows with finance, and confirm the launch checklist."
}Clone through the API
curl https://api.relaypdf.com/v1/templates \
-H "Authorization: Bearer $RELAYPDF_API_KEY" \
-H "Content-Type: application/json" \
-d '{"name":"Project Status Report Template","galleryId":"project-status-report"}'This creates an account-owned draft. Publish it before using its slug or UUID as templateId with templateData on POST /v1/pdf. Follow the complete template workflow →
Will the PDF match this preview?
The preview uses the same HTML and sample data included with this template. RelayPDF renders HTML using Chromium. Use the document’s intended A4 paper size and enable print backgrounds. Review page breaks when you add longer content or more rows.
Can I use my own branding and data?
Yes. Edit the HTML and CSS, replace the sample values, and keep the field names your template expects. Save your customized draft in the dashboard and publish a version when it is ready for your application.