/administration/events-list. It loads all events platform-wide using GET /api/events with search and pagination support.
Admins share the same
PUT /api/events/{id} and DELETE /api/events/{id} endpoints as Users and Organizers. The difference is that the service layer grants Admins permission to modify any event regardless of who created it, whereas regular users can only edit their own events.Listing all events
The list view shows every event on the platform in a paginated table.| Column | Description |
|---|---|
| Title | Event name |
| Category | The category the event belongs to |
| Organizer | The user who created the event |
| Date | Publication date of the event |
| Comments | Total number of comments on the event |
| Attendances | Total number of attendees registered |
| Details | Link to the event detail page |
Creating an event
The Nuevo evento button on the events list links to/main/event/create. Admins, Organizers, and Users all have access to this form.
Editing an event
Admins can edit any event on the platform, regardless of the original organizer.EventEditDto, which accepts the same fields used during creation.