discourse/app/assets/javascripts/admin/templates/modal/admin-theme-item.hbs
Penar Musaraj cafe637407
UX: List popular themes and components in admin panel (#6997)
Reorganizes theme create/upload flows into one install flow
Adds quick list of popular themes/components with one-click installation
2019-02-20 14:58:31 -05:00

20 lines
587 B
Handlebars

<div class="popular-theme-item">
<div class="popular-theme-name">
{{theme.name}}
{{#if theme.preview}}
<a href="{{theme.preview}}" title="Preview" target="_blank">{{d-icon "eye"}}</a>
{{/if}}
</div>
<div class="popular-theme-buttons">
{{#if theme.installed}}
<span>{{I18n "admin.customize.theme.installed"}}</span>
{{else}}
{{d-button class='btn-small'
label="admin.customize.theme.install"
disabled=installDisabled
icon="upload"
action=(action "installThemeFromList" theme.value)}}
{{/if}}
</div>
</div>