- A name and description
- An access type (e.g., backstage, press, artist)
- The holder’s full name and ID number
Routes
| Route | Description |
|---|---|
/eventos-credenciales?id={eventId} | List all credentials for an event |
/eventos-credenciales-crear?id={eventId} | Create a new credential |
/eventos-credenciales-detalles?id={credentialId} | View credential details |
All credential routes require an
id query parameter that identifies the event. Navigating without this parameter will result in an empty page.Viewing credentials
Go to/eventos-credenciales?id={eventId} to view the credential list for an event. The page shows a ProfileBanner with the event details at the top, followed by the CredentialsTableList table.
The table lists each credential’s name, access type, holder name, holder ID, and status. Credentials are stored in the events/{eventId}/credentials Firestore subcollection.
Creating a credential
Open the credential form
From the credential list page, click Nueva Credencial to navigate to
/eventos-credenciales-crear?id={eventId}.Fill in credential details
The Detalles credencial section requires:
| Field | Required | Description |
|---|---|---|
| Nombre de la Credencial | Yes | A descriptive name for the credential type (e.g., “Pase de Prensa”) |
| Tipo de Acceso | Yes | The access level this credential grants (e.g., “Backstage”, “General”) |
| Descripción | Yes | A longer description of what this credential allows |
Fill in holder information
The Datos del Titular section identifies the person receiving this credential:
| Field | Required | Description |
|---|---|---|
| Nombre del Titular | Yes | Full name of the person who will hold this credential |
| Cédula del Titular | Yes | Government ID number of the holder |
Credential detail view
Click any credential in the list to open the detail page at/eventos-credenciales-detalles. The DetailCredentialsEvents component shows all credential fields in a read-only format.