> ## 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.

# Administration

> Manage Nextedy RISKSHEET installation, updates, permissions, and project configuration.

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>;
};

<Columns cols={3}>
  <Card title="Update Risksheet" icon="file" href="/risksheet/guides/administration/update">
    Upgrade the Risksheet plugin to a new version, including pre-update checks and post-update verification.
  </Card>

  <Card title="Configure Permissions" icon="file" href="/risksheet/guides/administration/permissions">
    Set up field-level permissions, admin access control, and read-only enforcement for risk items.
  </Card>

  <Card title="Add Risksheet to Existing Project" icon="file" href="/risksheet/guides/administration/project-setup">
    Enable Risksheet in a Polarion project that was not created from a Nextedy template.
  </Card>

  <Card title="Troubleshoot Administration Issues" icon="wrench" href="/risksheet/guides/administration/troubleshooting">
    Resolve common administration problems including empty setup pages, log errors, and license issues.
  </Card>
</Columns>

<Tip title="New to Risksheet Administration?">
  If you are setting up Risksheet for the first time, start with the [Installation](/risksheet/getting-started/installation) tutorial, then return here for ongoing administration tasks.
</Tip>

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