2017-04-12 22:52:52 +08:00
|
|
|
{{#unless editingTheme}}
|
2018-02-15 01:26:05 +08:00
|
|
|
<div class='content-list'>
|
2017-04-12 22:52:52 +08:00
|
|
|
<h3>{{i18n 'admin.customize.theme.long_title'}}</h3>
|
|
|
|
<ul>
|
2017-04-18 03:56:13 +08:00
|
|
|
{{#each sortedThemes as |theme|}}
|
2017-04-12 22:52:52 +08:00
|
|
|
<li>
|
|
|
|
{{#link-to 'adminCustomizeThemes.show' theme replace=true}}
|
|
|
|
{{theme.name}}
|
|
|
|
{{#if theme.user_selectable}}
|
2017-07-27 04:25:09 +08:00
|
|
|
{{d-icon "user"}}
|
2017-04-12 22:52:52 +08:00
|
|
|
{{/if}}
|
|
|
|
{{#if theme.default}}
|
2017-07-27 04:25:09 +08:00
|
|
|
{{d-icon "asterisk"}}
|
2017-04-12 22:52:52 +08:00
|
|
|
{{/if}}
|
|
|
|
{{/link-to}}
|
|
|
|
</li>
|
|
|
|
{{/each}}
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
{{d-button label="admin.customize.new" icon="plus" action="newTheme" class="btn-primary"}}
|
|
|
|
{{d-button action="importModal" icon="upload" label="admin.customize.import"}}
|
|
|
|
</div>
|
|
|
|
{{/unless}}
|
|
|
|
{{outlet}}
|