mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 04:56:49 +00:00
Add proxy tags to full system list (#100)
* Add proxy tags to full system list * List proxy tags inside code block
This commit is contained in:
parent
8b19f25ed2
commit
6ae24cbe92
1 changed files with 2 additions and 0 deletions
|
|
@ -278,6 +278,8 @@ def member_list_full(system: System, all_members: List[Member], current_page: in
|
|||
member_description += "**Birthday:** {}\n".format(member.birthday_string())
|
||||
if member.pronouns:
|
||||
member_description += "**Pronouns:** {}\n".format(member.pronouns)
|
||||
if member.prefix or member.suffix:
|
||||
member_description += "**Proxy tags:** `{}text{}`\n".format(member.prefix or "", member.suffix or "")
|
||||
if member.description:
|
||||
if len(member.description) > 512:
|
||||
member_description += "\n" + truncate_description_list(member.description) + "\n" + "Type `pk;member {}` for full description.".format(member.hid)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue