### Manual Verification
- [ ] From the asset screen UI, add multiple users to an asset. Verify only the added users will show on the screen
- [ ] From DBVisualizer or other Postgres ide you should be able to see creation and update info in AssetsUsersMM table.
Dependencies
26
Overview
As a user I want to be able to see what users are associated with an asset
Action Items
class AssetGroupsToolsAdmin(admin.ModelAdmin): inlines = [AssetGroupToolsInline] list_display = ("Tools.name") search_fields = ["Tools.name"]
admin.register(Assets, AssetsUsersAdmin)