Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Manual LogEntry create not displaying changes_text in admin #674

Open
alxvallejo opened this issue Oct 11, 2024 · 0 comments
Open

Manual LogEntry create not displaying changes_text in admin #674

alxvallejo opened this issue Oct 11, 2024 · 0 comments

Comments

@alxvallejo
Copy link

I'm trying to manually log logins as the only access action for my log.

                LogEntry.objects.create(
                    actor=user,
                    object_id=user.id,
                    object_repr=user.username,
                    action=3,
                    changes_text=f"User Login: {person.full_name}",
                    changes=[{"login": f"User Login: {person.full_name}"}], # This doesn't work either
                    content_type_id=ContentType.objects.get_for_model(user).pk,
                )

It creates the LogEntry object but the admin doesn't display my changes text (or changes in general)

image

So how can i get the changes text to display here?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant