Add django-admin-logs app for viewing admin history

This commit is contained in:
Adam Goldsmith 2022-02-04 11:12:11 -05:00
parent 030cbe8a92
commit 4ac3fd1806
3 changed files with 11 additions and 1 deletions

View File

@ -7,6 +7,7 @@ name = "pypi"
django = "~=4.0"
mysqlclient = "~=2.1"
django-auth-ldap = "~=4.0"
django-admin-logs = "~=1.0"
[dev-packages]

10
Pipfile.lock generated
View File

@ -1,7 +1,7 @@
{
"_meta": {
"hash": {
"sha256": "64d22e44b33d1417c5433e61f41e79967fa16dfd4f2faa5787724bc0760f5f8c"
"sha256": "19857e48b0277129d8fe2499742545bbb58183069d59946c495ede86bc367bea"
},
"pipfile-spec": 6,
"requires": {
@ -32,6 +32,14 @@
"index": "pypi",
"version": "==4.0.2"
},
"django-admin-logs": {
"hashes": [
"sha256:81753c20d372bc5562fe4a09090418bbb61b308388e851b19192873a472fa3d1",
"sha256:aedb5df940d32c10423d65136343bc009727df8a5a49ed0196e65241d823a890"
],
"index": "pypi",
"version": "==1.0.2"
},
"django-auth-ldap": {
"hashes": [
"sha256:276f79e624ce083ce13f161387f65ff1c0efe83ef8a42f2b9830d43317b15239",

View File

@ -28,6 +28,7 @@ INSTALLED_APPS = [
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'django_admin_logs',
'membershipworks.apps.MembershipworksConfig',
'paperwork.apps.PaperworkConfig',
]