{"id":23577,"library":"django-logentry-admin","title":"django-logentry-admin","description":"A Django app that provides a read-only view of LogEntry objects in the Django admin site, allowing you to see all admin actions easily. Current version: 1.1.0.","status":"active","version":"1.1.0","language":"python","source_language":"en","source_url":"https://github.com/yprez/django-logentry-admin","tags":["django","admin","logentry","audit-log"],"install":[{"cmd":"pip install django-logentry-admin","lang":"bash","label":"Install from PyPI"}],"dependencies":[{"reason":"Required; integrates with Django admin and LogEntry model.","package":"django","optional":false}],"imports":[{"note":"Commonly mistaken as a model or views module; ensure correct dotted path.","wrong":null,"symbol":"LogEntryAdmin","correct":"from logentry_admin.admin import LogEntryAdmin"}],"quickstart":{"code":"# settings.py\nINSTALLED_APPS = [\n    ...\n    'logentry_admin',\n]\n\n# urls.py (if needed, though the admin view is auto-registered)\n# Ensure django.contrib.admin is also in INSTALLED_APPS.\n# The admin view becomes available at /admin/logentry/logentry/","lang":"python","description":"Add 'logentry_admin' to INSTALLED_APPS. The app auto-registers a read-only admin view for LogEntry. Requires Django's admin app to be active."},"warnings":[{"fix":"Use Django's built-in admin or a custom solution if mutability is needed.","message":"This app only provides a read-only admin view. You cannot add, edit, or delete log entries through the admin interface.","severity":"gotcha","affected_versions":"all"},{"fix":"Test with your Django version; consider alternatives if updates are needed.","message":"The library may be considered feature-complete and has not been updated extensively. Verify compatibility with your Django version before using in production.","severity":"deprecated","affected_versions":">=1.1.0"},{"fix":"Ensure LogEntry model is not already registered elsewhere, or customize the app's registration.","message":"LogEntryAdmin uses the default admin registration; if you have already unregistered or customized LogEntry admin, this app may conflict.","severity":"gotcha","affected_versions":"all"}],"env_vars":null,"last_verified":"2026-05-01T00:00:00.000Z","next_check":"2026-07-30T00:00:00.000Z","problems":[{"fix":"Run 'pip install django-logentry-admin' and add 'logentry_admin' to INSTALLED_APPS.","cause":"The app is not installed or not added to INSTALLED_APPS.","error":"ModuleNotFoundError: No module named 'logentry_admin'"},{"fix":"Use 'from logentry_admin.admin import LogEntryAdmin'.","cause":"Incorrect import path; trying to import from the top-level package.","error":"AttributeError: module 'logentry_admin' has no attribute 'admin'"},{"fix":"Remove duplicate entry; keep only one 'logentry_admin' in INSTALLED_APPS.","cause":"The app is installed twice in INSTALLED_APPS.","error":"ImproperlyConfigured: Application labels aren't unique, duplicates: logentry_admin"}],"ecosystem":"pypi","meta_description":null,"install_score":null,"install_tag":null,"quickstart_score":null,"quickstart_tag":null}