The movie management section of the admin panel is the central place for maintaining the film catalog. All movies in Tikera are displayed in a responsive grid, and each card provides quick access to edit, delete, or manage screenings for that film.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/raczkodavid/Tikera/llms.txt
Use this file to discover all available pages before exploring further.
The movie grid
When you open the admin panel at/adminpage, all movies load in a card grid. Each card shows the movie’s poster image, title, genre, and release year. Hovering over a card reveals a “Manage Screenings” overlay — clicking the card body opens the screenings modal for that movie.
Each card also has two explicit action buttons:
- Edit — opens the edit modal with the movie’s current data pre-filled
- Delete — triggers a confirmation dialog before permanently removing the movie
How to add a movie
Open the add movie modal
Click the Add Movie button in the top-right corner of the admin panel. A modal dialog opens with an empty form.
Fill in the movie details
Complete all required fields in the form. See the field reference below for accepted values and constraints.
Movie fields
All fields are required when creating a movie. The same fields are available when editing.| Field | Type | Description |
|---|---|---|
title | string (max 255) | The movie’s display title |
description | string | A text synopsis shown on movie cards and detail views |
image_path | URL | A publicly accessible URL pointing to the movie’s poster image |
duration | integer (min 1) | Runtime in minutes |
genre | string (max 255) | The movie’s genre (e.g. Action, Drama, Comedy) |
release_year | integer (1900–next year) | The four-digit year the movie was released |