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

# Getting Started

> Install Nextedy MEDIAKIT and add the media gallery to a Polarion work item form.

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

Mediakit turns a work item's attachments into a visual gallery. Getting there takes two steps: install the plugin on your Polarion server, then add the gallery to the work item forms that should show it.

<Columns cols={2}>
  <Card title="Installation" icon="download" href="/mediakit/getting-started/installation">
    Deploy the plugin on your Polarion server and apply a licence.
  </Card>

  <Card title="Adding the Gallery" icon="images" href="/mediakit/getting-started/adding-the-gallery">
    Add the gallery section to a work item form, one work item type at a time.
  </Card>
</Columns>

## Before You Start

You will need administrator access twice over: to the Polarion server filesystem, to install the plugin, and to a project's administration, to configure where the gallery appears.

## What You Get

Once both steps are done, work items of the configured types show a gallery section on their form. From it you can upload files, see images as thumbnails, open them full size, download any file, and delete files you no longer need — all without leaving the work item.

<LastReviewed date="2026-09-03" />
