diff --git a/templates/zerver/help/user-cards.md b/templates/zerver/help/user-cards.md index 3c710a6683..2733eaf7fd 100644 --- a/templates/zerver/help/user-cards.md +++ b/templates/zerver/help/user-cards.md @@ -9,6 +9,8 @@ sent](/help/view-messages-sent-by-a-user). {start_tabs} +{tab|user} + - Their avatar. - Their name. - Their email address, if you [have @@ -20,12 +22,22 @@ sent](/help/view-messages-sent-by-a-user). - Their current [local time](/help/change-your-timezone). - Their [status and availability](/help/status-and-availability). +{tab|bot} + +- Its avatar. +- Its name. +- Its owner's name. +- Its email address, if you [have +permission](/help/restrict-visibility-of-email-addresses) to view it. + {end_tabs} ## View someone's user card {start_tabs} +{tab|user} + {!right-sidebar-user-card.md!} !!! tip "" @@ -37,6 +49,12 @@ sent](/help/view-messages-sent-by-a-user). Alternatively, open someone's **user card** by selecting a message they sent, and using the U shortcut. +{tab|bot} + +{settings_tab|bot-list-admin} + +1. Click on the name of a bot in the **Name** column to open its **user card**. + {end_tabs} ## Related articles diff --git a/zerver/lib/markdown/tabbed_sections.py b/zerver/lib/markdown/tabbed_sections.py index 4d5d4699ae..6dd45352d5 100644 --- a/zerver/lib/markdown/tabbed_sections.py +++ b/zerver/lib/markdown/tabbed_sections.py @@ -90,6 +90,8 @@ TAB_SECTION_LABELS = { "keycloak": "Keycloak", "logged-in": "If you are logged in", "logged-out": "If you are logged out", + "user": "User", + "bot": "Bot", }