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-admin
Or install from source:
git clone [email protected]:yprez/django-logentry-admin.git
cd django-logentry-admin
python setup.py install
To 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
$ tox
Or just a specific Django / Python version:
$ tox -e py35-django19
Or run on multiple CPUs in parallel with detox to make it faster:
$ pip install detox
$ detox