> ## Documentation Index
> Fetch the complete documentation index at: https://docs.encoreos.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Community Engagement Submissions

> View and manage inbound form submissions for a specific web form — filter by status, review pending entries, and track processing.

The route `/ce/web-forms/:id/submissions` for a dedicated Submissions page does not exist in the current codebase. Submission review is available on the Web Form Details page at `/ce/web-forms/:id`, within the **Submissions** tab.

## Overview

No component is mounted at `/ce/web-forms/:id/submissions`. Submissions for a form are accessible via the **Submissions** tab on the Web Form Details page (`/ce/web-forms/:id`), which renders `WebFormSubmissionsTable` with a status filter (all, pending, processed, spam). Submission stats (total, pending, processed, spam, today's count) appear as stat cards above the tab set.

## Who it's for

Access follows your organization's role and module configuration. The Web Form Details page requires `ce.admin`.

## Before you start

Navigate to the form's detail page at `/ce/web-forms/{id}` and switch to the **Submissions** tab.

## Steps

<Steps>
  <Step title="Open the form detail page">
    Navigate to `/ce/web-forms/{id}` for the relevant form.
  </Step>

  <Step title="Switch to the Submissions tab">
    Click the **Submissions** tab to view and filter submission records.
  </Step>

  <Step title="Filter by status">
    Use the status filter in `WebFormSubmissionsTable` to view all, pending, processed, or spam submissions.
  </Step>
</Steps>

## Related

<Columns cols={2}>
  <Card title="Community Engagement" icon="bullhorn" href="/ce/overview">
    Community Engagement core overview.
  </Card>

  <Card title="Governance & parity" icon="scale-balanced" href="/governance/index" />
</Columns>

<Note>
  This page documents shipped product behavior. It is not medical, legal, or
  billing advice. Verify against your organization's policies and applicable
  regulations before using it for clinical, compliance, or billing decisions.
  Protected health information (PHI) shown in the product is governed by your
  tenant's access controls and is never exposed in this documentation.
</Note>

<Accordion title="Documentation sources">
  * src/routes/ce.tsx
  * src/cores/ce/pages/WebFormDetailPage.tsx
  * src/cores/ce/components/web-forms/WebFormSubmissionsTable.tsx
  * src/cores/ce/hooks/useWebFormSubmissions.ts
</Accordion>
