https://github.com/apkawa/django-admin-view
Helps create custom admin view
https://github.com/apkawa/django-admin-view
Last synced: about 1 year ago
JSON representation
Helps create custom admin view
- Host: GitHub
- URL: https://github.com/apkawa/django-admin-view
- Owner: Apkawa
- License: mit
- Created: 2018-05-21T14:03:02.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2020-01-08T11:16:50.000Z (over 6 years ago)
- Last Synced: 2025-07-06T01:02:40.751Z (about 1 year ago)
- Language: Python
- Size: 43 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://pypi.python.org/pypi/django-admin-view)
[](https://travis-ci.org/Apkawa/django-admin-view)
[](https://codecov.io/gh/Apkawa/django-admin-view)
[](https://requires.io/github/Apkawa/django-admin-view/requirements/?branch=master)
[](https://pyup.io/repos/github/Apkawa/django-admin-view)
[](https://pypi.python.org/pypi/django-admin-view)
[](LICENSE)
# Installation
```bash
pip install django-admin-view
```
or from git
```bash
pip install -e git+https://githib.com/Apkawa/django-admin-view.git#egg=django-admin-view
```
## Django and python version
| Python
Django | 3.5 | 3.6 | 3.7 | 3.8 |
|:-----------------:|-----|-----|-----|-----|
| 1.8 | ✘ | ✘ | ✘ | ✘ |
| 1.11 | ✔ | ✔ | ✔ | ✘ |
| 2.2 | ✔ | ✔ | ✔ | ✔ |
| 3.0 | ✘ | ✔ | ✔ | ✔ |
# Usage
# Contributing
## run example app
```bash
pip install -r requirements-dev.txt
./test/manage.py migrate
./test/manage.py runserver
```
## run tests
```bash
pip install -r requirements-dev.txt
pytest
tox
```
## Update version
```bash
python setup.py bumpversion
```
## publish pypi
```bash
python setup.py publish
```