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) <img width="1069" alt="image" src="https://github.com/user-attachments/assets/e13b65c9-a7b8-473c-a590-597fd093b29f"> So how can i get the changes text to display here?