{{#user-link user=post.user}}
{{avatar post.user imageSize="large"}}
{{/user-link}}
{{#user-link user=post.user}}
{{post.user.username}}
{{/user-link}}
{{#if post.user.silenced}}
{{d-icon "ban" title="user.silenced_tooltip"}}
{{/if}}
{{age-with-tooltip post.created_at}}
{{#if editTitleAndCategory}}
{{text-field value=buffered.title maxlength=siteSettings.max_topic_title_length}}
{{category-chooser value=buffered.category_id}}
{{else}}
{{i18n "queue.topic"}}
{{#if post.topic}}
{{topic-link post.topic}}
{{else}}
{{editables.title}}
{{/if}}
{{category-badge editables.category}}
{{/if}}
{{#if editing}}
{{d-editor value=buffered.raw}}
{{else}}
{{cook-text editables.raw}}
{{/if}}
{{#if showTags}}
{{#each tags as |t|}}
{{discourse-tag t}}
{{/each}}
{{else if editTags}}
{{tag-chooser tags=buffered.tags categoryId=buffered.category_id width='100%'}}
{{/if}}
{{#if editing}}
{{d-button action="confirmEdit"
label="queue.confirm"
disabled=post.isSaving
class="btn-primary confirm"}}
{{d-button action="cancelEdit"
label="queue.cancel"
icon="times"
disabled=post.isSaving
class="btn-danger cancel"}}
{{else}}
{{d-button action="approve"
disabled=post.isSaving
label="queue.approve"
icon="check"
class="btn-primary approve"}}
{{d-button action="reject"
disabled=post.isSaving
label="queue.reject"
icon="times"
class="btn-danger reject"}}
{{#if post.can_delete_user}}
{{d-button action="deleteUser"
disabled=post.isSaving
label="queue.delete_user"
icon="trash"
class="btn-danger delete-user"}}
{{/if}}
{{d-button action="edit"
disabled=post.isSaving
label="queue.edit"
icon="pencil"
class="edit"}}
{{/if}}