/app/alumno/clases/{id_class}.
Viewing activities
The class detail page has two activity tabs:- Pendientes
- Finalizadas
Tasks with a future due date that you have not submitted yet. Sorted from oldest to newest start date.
- Title and optional description
- Date range — start date to due date
- Activity type — “Selección múltiple” (multiple choice) or “Desarrollo” (open-ended written response)
- Max score — maximum points available (if set by the teacher)
- Your grade — displayed after grading (e.g., “Tu nota: 85”)
- Delivery status badge — “Entregada” (submitted) or “No entregada” (not submitted)
Opening an activity
Click “Ver actividad” on any card. A right-side drawer slides open with the full activity content.Activity types
Multiple choice (simple)
Each question has a prompt and several radio-button options. Select one option per question. Questions show the point value for that question.
- All questions must have a selected option before you can submit.
- If you miss a question, an error message appears below it: “Debe seleccionar una respuesta.”
- Grading is automatic: the server compares your selected option against the
correct_optionstored server-side (not exposed to the client). Each correct answer adds its point value to your total.
Open-ended (development)
Each question has a prompt and a textarea for your written answer.
- All text areas must have a non-empty answer before you can submit.
- If a field is blank, an error message appears: “Debe escribir una respuesta.”
- Grading is manual — the teacher reviews and scores your submission. Status shows “Sin calificar aún” until the teacher grades it.
Submitting an activity
Answer all questions
For multiple choice, select one radio option per question. For open-ended, type your answer in each text area.
Viewing grades and feedback
After a teacher grades a submitted activity, the Finished tab card updates to show:- Grade — “Tu nota: X pts” in the activity drawer footer
- Per-question result (multiple choice only) — each question shows a green ”+” for correct or red ”-” for incorrect, with the points earned
- Teacher comment — if the teacher left a comment, it appears as a highlighted note at the bottom of the activity drawer
| Status | Meaning |
|---|---|
pending | Submitted but not yet graded by teacher (development type) |
qualified | Graded — score is available |
null | Due date passed without a submission |
API reference
Submit an activity response
| Field | Type | Description |
|---|---|---|
id_task | string (UUID) | ID of the task being submitted |
id_class | string (UUID) | ID of the class the task belongs to |
response | string (JSON) | JSON-serialized array of answered questions |
Submitting a response awards 100 points to the student’s account regardless of the score achieved. The
u_token cookie is refreshed with the updated points balance after each submission.