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

# Integration

> Nextedy RISKSHEET integrates with Polarion LiveDoc documents, project templates, branched documents, and test management features.

export const LastReviewed = ({date}) => {
  if (!date) return null;
  const formatted = new Date(`${date}T00:00:00Z`).toLocaleDateString("en-US", {
    year: "numeric",
    month: "long",
    day: "numeric",
    timeZone: "UTC"
  });
  return <p className="mt-10 text-sm text-gray-400 dark:text-zinc-500 not-prose">
      Last reviewed on {formatted}
    </p>;
};

## Topics

<Columns cols={3}>
  <Card title="Embed Risksheet in LiveDoc" icon="file" href="/risksheet/guides/integration/livedoc-embedding">
    Render a Risksheet table inside a LiveDoc page for consolidated risk reporting.
  </Card>

  <Card title="Navigate to Risksheet from LiveDoc" icon="file" href="/risksheet/guides/integration/livedoc-navigation">
    Open Risksheet directly from a Polarion LiveDoc document or navigation menu.
  </Card>

  <Card title="Open Nested Risksheets" icon="file" href="/risksheet/guides/integration/nested-risksheets">
    Navigate from one Risksheet to another linked risk analysis document.
  </Card>

  <Card title="Work with Branched Documents" icon="file" href="/risksheet/guides/integration/branched-documents">
    Use branching support for versioned risk analysis across product releases.
  </Card>

  <Card title="Use Project Templates" icon="file" href="/risksheet/guides/integration/project-templates">
    Install and configure Risksheet project templates for consistent risk analysis setup.
  </Card>
</Columns>

<Columns cols={3}>
  <Card title="Configure Variant Management" icon="file" href="/risksheet/guides/integration/variant-management">
    Filter risk items by release version across branched projects and variants.
  </Card>

  <Card title="Work with Collections" icon="file" href="/risksheet/guides/integration/collection-support">
    Understand how Risksheet works with Polarion collections for release management.
  </Card>

  <Card title="Show Test Run Results" icon="file" href="/risksheet/guides/integration/test-runs">
    Display Polarion Test Run results inside a Risksheet alongside requirements, risks, or test cases.
  </Card>
</Columns>

<Tip title="Start with LiveDoc Integration">
  If you are new to Risksheet integration, begin with [Embed Risksheet in LiveDoc](/risksheet/guides/integration/livedoc-embedding) and [Navigate to Risksheet from LiveDoc](/risksheet/guides/integration/livedoc-navigation) to understand the basic connection between LiveDoc documents and the Risksheet grid.
</Tip>

<LastReviewed date="2026-06-24" />
