---
title: "Aksesibilitas"
version: 6.0
locale: id
source: https://docs.djangoproject.com/id/6.0/internals/contributing/accessibility/
canonical: https://djangodocs.dev/id/6.0/internals/contributing/accessibility/
---
# Aksesibilitas

Proyek Django berkomitmen untuk memastikan bahwa jaringan situs dibangun dengan Django dapat digunakan oleh semua orang, termasuk orang dengan disabilitas. Komponen bawaan Django, seperti antarmuka admin dan formulir membangun awalan, harus mengikuti untuk membangun standar aksesibilitasdan memmenuhi sasaran kami untuk mendukung perangkat masukan tertentu dan membantu teknologi,

## Standar aksesibiltas

Kami berupaya untuk mematuhi [Web Content Accessibility Guidelines](https://www.w3.org/TR/WCAG22/) (WCAG), versi 2.2, pada tingkatan AA. WCAG merupakan standar yang paling mapan untuk aksesibilitas web. [AA-level guidelines](https://www.w3.org/WAI/WCAG22/quickref/?currentsidebar=%23col_overview&levels=aaa) merupakan target kepatuhan hukum yang paling umum di seluruh dunia.

Kami juga bertujuan untuk mengikuti praktik terbaik lainnya, seperti:

- WCAG 2.2 [AAA-level guidelines](https://www.w3.org/WAI/WCAG22/quickref/?currentsidebar=%23col_overview&levels=a%2Caa) – kriteria yang lebih ketat yang melampaui level AA.
- Pedoman WCAG 3.0 yang akan datang – standar baru yang terus berkembang yang bertujuan untuk menyatukan dan meningkatkan versi WCAG sebelumnya.
- [Authoring Tool Accessibility Guidelines](https://www.w3.org/TR/ATAG20/) (ATAG) 2.0 – pedoman untuk perangkat lunak dan layanan yang digunakan untuk menghasilkan isi jaringan.

Untuk mempelajari lebih lanjut tentang aksesibilitas tanpa langsung membahas standar, kami merekomendasikan [The A11Y Project](https://www.a11yproject.com/), sebuah upaya yang digerakkan oleh komunitas untuk mempermudah aksesibilitas digital.

## Target dukungan dan pengujian

Di luar standar, kami ingin memastikan Django benar-benar berfungsi untuk orang-orang yang menggunakan berbagai perangkat input dan teknologi bantu. Hal ini bermanfaat untuk memastikan Django bekerja lebih baik [for everyone](https://en.wikipedia.org/wiki/Curb_cut_effect). Cara terbaik untuk melakukan ini secara efektif adalah dengan mempertimbangkan aspek aksesibilitas sebagai bagian dari perancangan fitur. Jika ragu, konsultasikan dengan pengguna yang bergantung pada teknologi bantu atau dengan pakar aksesibilitas. Anda dapat menghubungi [Accessibility team](https://www.djangoproject.com/foundation/teams/#accessibility-team) melalui [Accessibility Django forum topic](https://forum.djangoproject.com/c/internals/accessibility/26) atau melalui saluran `#accessibility` di [Django Discord server](https://chat.djangoproject.com).

### Pengujian dasar

Rancang UI dengan mempertimbangkan aksesibilitas, dan pengujian hanya akan diperlukan sebagai pengecekan akhir. Untuk antarmuka yang lebih kompleks, konsultasikan dengan kontributor lain untuk menentukan target pengujian. Hubungi  [Accessibility team](https://www.djangoproject.com/foundation/teams/#accessibility-team) untuk mendapatkan dukungan dan mengoordinasikan pengujian.

Selalu uji perubahan antarmuka pengguna dengan:

- Keyboard-only navigation. Common issues include:

  - Elemen interaktif tidak dapat diakses menggunakan tombol Tab atau tombol panah.
  - An interactive element "traps" input focus and prevents navigating away.
  - An interactive element doesn't give a visible indication when it has input
    focus.
  - The focus order is inconsistent with the logical order that's communicated
    visually.
- The [Accessibility Insights](https://accessibilityinsights.io/) browser extension's automated checks feature,
  or an equivalent tool with the [Axe](https://github.com/dequelabs/axe-core) checker.

Where the UI changes could affect those modalities, also test with:

- Touch-only navigation. Common issues include:

  - A touch target (interactive element) is too small.
  - Hover-based based interaction which does not translate to touch, such as a
    hover only tooltip.
- 400% browser zoom. Common issues include:

  - Content is cut off or disappears when zoomed.
  - Content that does not inherently require a two-dimensional layout causes
    scrolling in both directions (vertical and horizontal). Two-dimensional
    scrolling is acceptable for content like images, maps, videos, and data
    tables, which require both dimensions to be usable.
- Forced-colors mode (for example Windows Contrast Themes). Note that this can
  be tested via the `"high_contrast"` mode in the [screenshot tests](/id/6.0/internals/contributing/writing-code/unit-tests/#screenshot-tests). Common issues include:

  - Over-reliance on color for meaning, which is lost in forced-colors mode.
  - Use of `!important` or inline styles may break forced-colors mode.

### Recommended assistive technologies

Where the UI changes could affect assistive technologies, here are popular free
options we recommend testing with.

For Windows:

- [NVDA](https://www.nvaccess.org/) \- recommended with Firefox ESR
- [Narrator](https://support.microsoft.com/en-us/windows/complete-guide-to-narrator-e4397a0d-ef4f-b386-d8ae-c172f109bdb1) \- recommended with Microsoft Edge
- Windows Magnifier
- Windows Speech Recognition
- [Contrast themes](https://support.microsoft.com/en-us/windows/change-color-contrast-in-windows-fedc744c-90ac-69df-aed5-c8a90125e696)

For macOS:

- [VoiceOver](https://support.apple.com/en-gb/guide/voiceover-guide/welcome/web) \- recommended with Safari
- macOS Zoom
- macOS Voice Control

For Linux:

- [Orca](https://help.gnome.org/users/orca/stable/) \- recommended with Firefox ESR

For mobile or tablet:

- VoiceOver on iOS, or TalkBack on Android

The following are popular licensed options. If you are a user of these, or can
work with a user holding a license, also test against:

- [JAWS](https://www.freedomscientific.com/products/software/jaws/) on Windows
- [Dragon](https://www.nuance.com/en-gb/dragon.html) on Windows

## Known issues and how to help

There are parts of Django that do not meet our accessibility targets. We
actively work on fixing issues, both as part of ongoing maintenance and bigger
overhauls. To learn about known issues, and get involved, see:

- `#accessibility` on the [Django Discord server](https://chat.djangoproject.com).
- The [Accessibility Django forum topic](https://forum.djangoproject.com/c/internals/accessibility/26).
- [Accessibility issues on the ticket tracker](https://code.djangoproject.com/query?status=!closed&keywords=~accessibility).
- Our [django accessibility improvements](https://github.com/orgs/django/projects/7) project board.
- The [Accessibility team](https://www.djangoproject.com/foundation/teams/#accessibility-team).
