Show all LogEntry objects in the Django admin site.
Originally based on: Django snippet 2484
- Django 3.2, 3.1, 2.2
- Python 3.9, 3.8, 3.7, 3.6, 3.5
Install by using pip or easy_install:
pip install django-logentry-adminOr install from source:
git clone [email protected]:yprez/django-logentry-admin.git
cd django-logentry-admin
python setup.py installTo add this application into your project, just add it to your INSTALLED_APPS setting:
INSTALLED_APPS = (
...
'logentry_admin',
)Test on all Python / Django versions with tox:
$ pip install tox
$ toxOr just a specific Django / Python version:
$ tox -e py35-django19Or run on multiple CPUs in parallel with detox to make it faster:
$ pip install detox
$ detox