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 · 1 comment
Open

Manual LogEntry create not displaying changes_text in admin #674

alxvallejo opened this issue Oct 11, 2024 · 1 comment

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?

@hoangquochung1110
Copy link
Contributor

@alxvallejo

You can try to write a custom Admin like this:

# admin.py
from django.contrib import admin
from auditlog.admin import LogEntryAdmin
from auditlog.models import LogEntry


class CustomLogEntryAdmin(LogEntryAdmin):

    list_display = list(LogEntryAdmin.list_display) + [
        # Add your custom fields here
        "changes_str",
    ]


# Remember to unregister the original admin class
admin.site.unregister(LogEntry)
# And re-register it with the custom one
admin.site.register(LogEntry, CustomLogEntryAdmin)

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

2 participants