Replies: 1 comment 2 replies
-
I think we've discussed this before, class UsersMessages(Base, UUIDMixin, CreatedUpdatedMixin):
__tablename__ = "users_messages"
def __str__(self):
return str(self.another_column) And if you loaded only |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
i have these two models with one to many relationship
here is the userAdmin view:
how can i select only the content and role from usersmessages table instead of entire object inside details view page
Beta Was this translation helpful? Give feedback.
All reactions