2017-04-12 10:52:52 -04:00
|
|
|
{{#unless editingTheme}}
|
2018-02-14 12:26:05 -05:00
|
|
|
<div class='content-list'>
|
2017-04-12 10:52:52 -04:00
|
|
|
<h3>{{i18n 'admin.customize.theme.long_title'}}</h3>
|
|
|
|
<ul>
|
2017-04-17 15:56:13 -04:00
|
|
|
{{#each sortedThemes as |theme|}}
|
2017-04-12 10:52:52 -04:00
|
|
|
<li>
|
|
|
|
{{#link-to 'adminCustomizeThemes.show' theme replace=true}}
|
2018-05-18 04:09:21 -04:00
|
|
|
{{plugin-outlet name="admin-customize-themes-list-item" connectorTagName='span' args=(hash theme=theme)}}
|
2017-04-12 10:52:52 -04:00
|
|
|
{{theme.name}}
|
|
|
|
{{#if theme.user_selectable}}
|
2017-07-26 16:25:09 -04:00
|
|
|
{{d-icon "user"}}
|
2017-04-12 10:52:52 -04:00
|
|
|
{{/if}}
|
|
|
|
{{#if theme.default}}
|
2017-07-26 16:25:09 -04:00
|
|
|
{{d-icon "asterisk"}}
|
2017-04-12 10:52:52 -04: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}}
|