mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 07:26:04 +08:00
31 lines
853 B
Handlebars
31 lines
853 B
Handlebars
<div class='emoji'>
|
|
<h2>{{i18n 'admin.emoji.title'}}</h2>
|
|
|
|
<p class="desc">{{i18n 'admin.emoji.help'}}</p>
|
|
|
|
<p>{{emoji-uploader done="emojiUploaded"}}</p>
|
|
|
|
{{#if sortedEmojis}}
|
|
<div>
|
|
<table id="custom_emoji">
|
|
<thead>
|
|
<tr>
|
|
<th>{{i18n "admin.emoji.image"}}</th>
|
|
<th>{{i18n "admin.emoji.name"}}</th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{{#each sortedEmojis as |e|}}
|
|
<tr>
|
|
<th><img class="emoji emoji-custom" src="{{unbound e.url}}" title="{{unbound e.name}}"></th>
|
|
<th>:{{e.name}}:</th>
|
|
<th><button {{action "destroy" e}} class='btn btn-danger no-text pull-right'>{{d-icon 'trash-o'}} </button></th>
|
|
</tr>
|
|
{{/each}}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
{{/if}}
|
|
</div>
|