Screenings in Tikera represent a single scheduled showing of a movie in a specific room at a specific date and time. Each screening belongs to one movie and one room, and the system automatically derives its week number and day of the week from the date you provide.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.
How screenings are linked to movies and rooms
Every screening stores amovie_id and a room_id. The room determines the seating layout (rows × seats per row) that customers see when booking. When you delete a movie, all of its screenings are deleted with it. Screenings can also be managed and deleted individually without affecting the movie itself.
Viewing screenings for a movie
From the admin panel at/adminpage, click anywhere on a movie card (the card body or the “Manage” badge). The Movie Screenings modal opens, showing:
- The movie’s poster, title, genre, release year, and runtime at the top
- A scrollable table listing all scheduled screenings with their date and start time
- Edit and Delete buttons on each screening row
How to add a screening
Open the movie screenings modal
Click a movie card in the admin grid. The screenings modal opens for that film.
Click Add Screening
Click the Add Screening button in the top-right of the modal. The add screening form appears inline.
Fill in the screening details
Select a room from the dropdown (each option shows the room name and its seating dimensions), pick a date, and enter a start time. See the field reference below.
The
week_number and week_day fields are computed automatically by the server from the date you enter — you do not need to provide them manually.Screening fields
| Field | Type | Description |
|---|---|---|
movie_id | integer | Set automatically from the movie whose screenings modal is open |
room_id | integer | The room where the screening will take place; selected from a dropdown of available rooms |
date | date | The calendar date of the screening (YYYY-MM-DD) |
start_time | time (HH:MM) | The time the screening begins, in 24-hour format |
week_number | integer | ISO week of the year — derived automatically from date |
week_day | integer | ISO weekday (1 = Monday, 7 = Sunday) — derived automatically from date |