📝 Description
Add a new "History" tab to the FireForm UI that shows how many reports (form submissions) have been created. The tab should display a summary count of submissions and a simple list or table of recent submission records (timestamp, submitting user or identifier, and form ID). The implementation can read directly from the existing form submissions table to get counts and records.
💡 Rationale
Users need a quick way to see how many reports have been created for a form and to browse recent submissions without querying the database manually. This improves discoverability and auditability of submissions.
🛠️ Proposed Solution
A brief sketch of how we might implement this:
Implementation note: This is straightforward because the submissions are already persisted in the form submissions table — the endpoint simply aggregates and returns that data.
✅ Acceptance Criteria
How will we know this is finished?
📌 Additional Context
The quickest implementation reads directly from the form submissions table. If needed later, we can add filters (date range, submitter) and pagination.
📝 Description
Add a new "History" tab to the FireForm UI that shows how many reports (form submissions) have been created. The tab should display a summary count of submissions and a simple list or table of recent submission records (timestamp, submitting user or identifier, and form ID). The implementation can read directly from the existing form submissions table to get counts and records.
💡 Rationale
Users need a quick way to see how many reports have been created for a form and to browse recent submissions without querying the database manually. This improves discoverability and auditability of submissions.
🛠️ Proposed Solution
A brief sketch of how we might implement this:
Implementation note: This is straightforward because the submissions are already persisted in the form submissions table — the endpoint simply aggregates and returns that data.
✅ Acceptance Criteria
How will we know this is finished?
docs/describing the new UI and endpoint.📌 Additional Context
The quickest implementation reads directly from the form submissions table. If needed later, we can add filters (date range, submitter) and pagination.