{{!-- When identified, show extra descriptions --}}
{{#if (or isIdentified user.isGM)}}
{{!-- All users see the main, identified description --}}
{{> ".description" collapsible=item.isOwner label="DND5E.Description" target="system.description.value"
enriched=enriched.description }}
{{!-- Only GM users are able to see and edit the unidentified description --}}
{{#if (and isIdentifiable user.isGM)}}
{{> ".description" collapsible=true label="DND5E.DescriptionUnidentified"
target="system.unidentified.description" enriched=enriched.unidentified }}
{{/if}}
{{!-- Owners can see and edit the chat description. It is only visible to non-owners if not blank. --}}
{{#if (or item.isOwner system.description.chat)}}
{{> ".description" collapsible=item.isOwner label="DND5E.DescriptionChat" target="system.description.chat"
enriched=enriched.chat }}
{{/if}}
{{else}}
{{!-- When unidentified, non-GM users can only see and edit the unidentified description --}}
{{#if (or item.isOwner system.unidentified.description)}}
{{> ".description" collapsible=false label="DND5E.Description" target="system.unidentified.description"
enriched=enriched.unidentified }}
{{/if}}
{{/if}}