Metadata-Version: 2.4
Name: django-fast-modeladmin
Version: 1.0.0
Summary: Faster Admin model control via a settings dictionary
Author: SimplePythonCoder
License-Expression: MIT
Project-URL: Homepage, https://github.com/SimplePythonCoder/django-fast-modeladmin
Project-URL: Source, https://github.com/SimplePythonCoder/django-fast-modeladmin
Project-URL: Changelog, https://github.com/SimplePythonCoder/django-fast-modeladmin/blob/main/CHANGELOG.md
Project-URL: Documentation, https://github.com/SimplePythonCoder/django-fast-modeladmin/wiki
Project-URL: Issues, https://github.com/SimplePythonCoder/django-fast-modeladmin/issues
Keywords: django,django-admin
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3.11
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
Classifier: Topic :: Utilities
Requires-Python: >=3.14
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: django
Dynamic: license-file

# django-fast-modeladmin

[![downloads](https://static.pepy.tech/badge/django-fast-modeladmin)](https://www.pepy.tech/projects/django-fast-modeladmin) [![changelog](https://raw.githubusercontent.com/SimplePythonCoder/zipmanager/main/images/Changelog.svg)](https://github.com/SimplePythonCoder/django-fast-modeladmin/blob/main/CHANGELOG.md) [![wiki](https://raw.githubusercontent.com/SimplePythonCoder/zipmanager/main/images/Wiki.svg)](https://github.com/SimplePythonCoder/django-fast-modeladmin/wiki)


A fast way to customize your django admin site.

### Installation & Usage

```
pip install django-fast-modeladmin
```

Add fast_modeladmin to INSTALLED_APPS:
```python
# settings.py
INSTALLED_APPS = [
    ...,
    'fast_modeladmin'
]

...

FAST_MODELADMIN = (...)
```

## Features

Allows you to control many of the Django admin sited functionalities with a dict for each model instead of creating many classes.

Including:
- edit columns shown in the model table page
- a search box for specific fields (including foreign keys)
- select which fields are editable or not

and many more.

The package also include an error system for easier readability.

more info at the [wiki](https://github.com/SimplePythonCoder/django-fast-modeladmin/wiki).
