14 lines
455 B
Handlebars
14 lines
455 B
Handlebars
<div class='small-action-desc'>
|
|
{{#if post}}
|
|
{{#if post.can_delete}}
|
|
<button {{action "delete"}} title={{i18n "post.controls.delete"}}>{{d-icon "times"}}</button>
|
|
{{/if}}
|
|
{{#if post.can_edit}}
|
|
<button {{action "edit"}} title={{i18n "post.controls.edit"}}>{{d-icon "pencil"}}</button>
|
|
{{/if}}
|
|
<a href={{post.usernameUrl}} data-user-card={{post.username}}>
|
|
{{avatar post imageSize="small"}}
|
|
</a>
|
|
{{/if}}
|
|
</div>
|