Physical and sporting activities in social inclusion contexts (basic level)

Physical and sporting activities in social inclusion contexts (basic level)

Overview

To promote initial and ongoing training on teaching strategies to encourage the inclusion of people with disabilities in Physical-Sports Activities (PSA), from a participatory and cross-cutting approach, which promotes the personal and social development of the participants in the community.

To present and justify didactic innovation processes that allow us to overcome integrative models and move towards proposals for inclusion in the AFD in a context of communities of practice in proximity based on coexistence and respect for diversity.

Goals

  • To promote initial and ongoing training on teaching strategies to encourage the inclusion of people with disabilities in Physical-Sports Activities (PSA), from a participatory and cross-cutting approach, which promotes the personal and social development of the participants in the community.
  • To present and justify didactic innovation processes that allow us to overcome integrative models and move towards proposals for inclusion in the AFD in a context of communities of practice in proximity based on coexistence and respect for diversity.

Access requirements

  1. Being a national of the Spanish territory.
  2. Be over 18 years old.
  3. Have at least a High School Diploma or equivalent professional certificate.

Academic program

Contents

  • In person

Presentation
Basic principles of attention to diversity in Physical-Sports Activities (PSA) for social inclusion.

Round table with people with disabilities who participate in AFD in social inclusion contexts.

Methodological strategies for intervention in AFD for social inclusion.

Teaching strategies and intervention criteria to promote the social inclusion of people with mental health disorders in the practice of AFD.

Mental health and inclusion among those responsible for and involved in AFD.

Guidelines for the development of the practical intervention and evaluation project for social inclusion in the practice of AFD.

Teaching strategies to promote the social inclusion of people with intellectual disabilities in AFD.

Teaching strategies and intervention criteria to promote the social inclusion of people with intellectual disabilities in AFD.

Inclusive expressive strategies and sign language.

Teaching strategies and intervention criteria to promote the social inclusion of people with sensory (hearing) disabilities in the AFD.

Conflict resolution in AFD.

Teaching strategies and intervention criteria to promote the social inclusion of people with sensory (visual) disabilities in AFD.

  • On-line

Accessible communication and visual supports to promote the inclusion of people with disabilities.

The social promotion of people with disabilities.

Methodological intervention strategies in AFD for the social inclusion of people with disabilities.

Methodological intervention strategies in AFD for the social inclusion of people with disabilities.

Architectural and communication barriers that hinder the social inclusion of people with disabilities in AFD.

Guidelines for the development of the practical intervention project.

Teaching strategies and intervention criteria to promote the inclusion of people with mental health disorders in AFD.

The inclusion of people with disabilities in AFD programs, a transnational perspective.

Teaching strategies and intervention criteria to promote the social inclusion of people with intellectual disabilities.

  • In person.

Teaching strategies and intervention criteria to promote the social inclusion of people with motor disabilities.

Presentations of the internship project and course evaluation.

Methodology and activities

50-hour training course. 37.5 hours in-person, 12.5 hours online.

Evaluation criteria

  • Assistance equal to or greater than 80%.
  • Active participation.
  • Follow-up on tutoring sessions.
  • Delivery of a proposal for physical-sports activity from an inclusive perspective.

General information

Credits: 5 ECTS

Duration: 06/10/2026 – 06/12/2026

Teaching modality: Blended learning

Location: University of La Laguna facilities and virtual campus

Registration: Free

Valued at: €217.50

Registration
More info and registration help

Training within the Physical-Sports Activity Program for the social inclusion of people with disabilities (PADIS), a program of the Tenerife Island Council and managed through the public company Ideco.

Flexibility

Short courses available in various formats (in-person, online, or hybrid). Ideal for learning without interrupting your professional life.

Employability

Content created and delivered by professionals and experts in the field, designed for immediate application.

Certification

Endorsed by the University of La Laguna. You will receive an official ECTS certificate, valid in the European Higher Education Area.

Teaching staff

Jorge Miguel Fernández Cabrera

Adelto Francisco de Borja Hernández Alvarez

Share this microcredential

// Common variables (we improved the encoding for email) const pageUrl = window.location.href; const pageTitle = document.title; // Sharing functions (those for social networks with window.open remain the same, but we added return false to avoid page breaks) function shareFacebook() { window.open(`https://www.facebook.com/sharer/sharer.php?u=${encodeURIComponent(pageUrl)}`, '_blank', 'width=600,height=400'); } function shareLinkedIn() { window.open(`https://www.linkedin.com/sharing/share-offsite/?url=${encodeURIComponent(pageUrl)}`, '_blank', 'width=600,height=500'); } function shareTelegram() { window.open(`https://t.me/share/url?url=${encodeURIComponent(pageUrl)}&text=${encodeURIComponent(pageTitle)}`, '_blank', 'width=600,height=400'); } function shareWhatsApp() { window.open(`https://api.whatsapp.com/send?text=${encodeURIComponent(pageTitle + ' ' + pageUrl)}`, '_blank'); } // Email share function (copy to clipboard + Gmail fallback) function shareByEmail() { const pageUrl = window.location.href; const pageTitle = document.title.trim(); // Text ready to paste into email (with line breaks) const emailText = `${pageTitle}\n${pageUrl}\n\nI'm sharing this interesting article with you.`; // We try to copy to the clipboard if (navigator.clipboard && navigator.clipboard.writeText) { navigator.clipboard.writeText(emailText).then(() => { // Success message (you can use alert, toast, or a temporary div) alert('Link copied to clipboard!\nPaste it into your email (Ctrl+V).'); }).catch(err => { console.error('Error copying:', err); fallbackToGmail(); }); } else { // If clipboard is not supported (very old browsers) fallbackToGmail(); } } function fallbackToGmail() { const pageUrl = encodeURIComponent(window.location.href); const pageTitle = encodeURIComponent(document.title); const body = encodeURIComponent(document.title + '\n' + window.location.href + '\n\nI'll share this with you:'); // Open Gmail compose window.open(`https://mail.google.com/mail/?view=cm&fs=1&su=${pageTitle}&body=${body}`, '_blank', 'width=800,height=600'); }