Metadata-Version: 2.3
Name: django-admin-keyshortcuts
Version: 0.1.2
Summary: Keyboard shortcuts for Django Admin
Author: Tom Carrick, A. Rafey Khan
Author-email: Tom Carrick <tom@carrick.eu>, A. Rafey Khan <khanxbahria@gmail.com>
Requires-Dist: django>=4.2
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# django-admin-keyshortcuts
A Django package that adds keyboard shortcuts to the Django Admin interface for improved accessibility.  

## Setup
Install from pip:  
`pip install django-admin-keyshortcuts`

then add `django_admin_keyshortctus` before `django.contrib.admin` in your `INSTALLED_APPS`:

```
INSTALLED_APPS = (
    ...,
    'django_admin_keyshortcuts',
    'django.contrib.admin', 
    ...,
)
```

## Usage
The following is a list of supported shortcuts
| Description                   | Shortcut | Scope              |
|------------------------------|----------|--------------------|
| Show shortcuts help dialog             | ?        | Global             |
| Go to the site index         | g i      | Global             |
| Select previous row for action | k      | Change List        |
| Select next row for action   | j        | Change List        |
| Toggle row selection         | x        | Change List        |
| Focus actions dropdown       | a        | Change List        |
| Save and go to change list   | Alt+s    | Change Form        |
| Save and add another         | Alt+a    | Change Form        |
| Save and continue editing    | Alt+c    | Change Form        |
| Delete                       | Alt+d    | Change Form        |
| Confirm deletion             | Alt+y    | Delete Confirmation|
| Cancel deletion              | Alt+n    | Delete Confirmation|

## About
The **django-admin-keyshortcuts** package is being developed with the goal of eventually merging its functionality into Django core.  
This package has been undergoing refinements with respect to [GSoC 2025: Keyboard Shortcuts Specification](https://docs.google.com/document/d/1sFyl53B4IPWpYX7Q0vJYaNiCaJbe3Ym3_m1Dgk_gmr8/)