2013-02-06 03:16:51 +08:00
|
|
|
|
2013-04-10 13:55:20 +08:00
|
|
|
<div class='content-list span6'>
|
|
|
|
<h3>{{i18n admin.customize.long_title}}</h3>
|
|
|
|
<ul>
|
2013-05-21 03:27:58 +08:00
|
|
|
{{#each model}}
|
2013-05-21 02:37:05 +08:00
|
|
|
<li><a {{action selectStyle this}} {{bindAttr class="this.selected:active"}}>{{this.description}}</a></li>
|
2013-02-06 03:16:51 +08:00
|
|
|
{{/each}}
|
|
|
|
</ul>
|
2013-05-21 02:37:05 +08:00
|
|
|
<button {{action newCustomization}} class='btn'>{{i18n admin.customize.new}}</button>
|
2013-02-06 03:16:51 +08:00
|
|
|
</div>
|
|
|
|
|
2013-04-10 13:55:20 +08:00
|
|
|
|
2013-05-21 03:27:58 +08:00
|
|
|
{{#if selectedItem}}
|
2013-04-10 09:54:51 +08:00
|
|
|
<div class='current-style'>
|
2013-05-21 03:27:58 +08:00
|
|
|
{{#with selectedItem}}
|
2013-05-21 00:56:36 +08:00
|
|
|
{{textField class="style-name" value=name}}
|
2013-09-17 00:21:49 +08:00
|
|
|
|
|
|
|
<div class='admin-controls'>
|
|
|
|
<ul class="nav nav-pills">
|
|
|
|
<li {{bindAttr class="view.stylesheetActive:active"}}>
|
|
|
|
<a {{action selectStylesheet href="true" target="view"}}>{{i18n admin.customize.css}}</a>
|
|
|
|
</li>
|
|
|
|
<li {{bindAttr class="view.headerActive:active"}}>
|
|
|
|
<a {{action selectHeader href="true" target="view"}}>{{i18n admin.customize.header}}</a>
|
|
|
|
</li>
|
|
|
|
<li {{bindAttr class="view.mobileStylesheetActive:active"}}>
|
|
|
|
<a {{action selectMobileStylesheet href="true" target="view"}}>{{i18n admin.customize.mobile_css}}</a>
|
|
|
|
</li>
|
|
|
|
<li {{bindAttr class="view.mobileHeaderActive:active"}}>
|
|
|
|
<a {{action selectMobileHeader href="true" target="view"}}>{{i18n admin.customize.mobile_header}}</a>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
{{#if view.headerActive}}
|
2013-05-30 02:08:00 +08:00
|
|
|
{{aceEditor content=header mode="html"}}
|
2013-02-06 03:16:51 +08:00
|
|
|
{{/if}}
|
|
|
|
{{#if view.stylesheetActive}}
|
2013-06-19 13:18:22 +08:00
|
|
|
{{aceEditor content=stylesheet mode="scss"}}
|
2013-09-17 00:21:49 +08:00
|
|
|
{{/if}}
|
|
|
|
{{#if view.mobileHeaderActive}}
|
|
|
|
{{aceEditor content=mobile_header mode="html"}}
|
|
|
|
{{/if}}
|
|
|
|
{{#if view.mobileStylesheetActive}}
|
|
|
|
{{aceEditor content=mobile_stylesheet mode="scss"}}
|
2013-02-06 03:16:51 +08:00
|
|
|
{{/if}}
|
|
|
|
{{/with}}
|
|
|
|
<br>
|
|
|
|
<div class='status-actions'>
|
2013-05-21 03:27:58 +08:00
|
|
|
<span>{{i18n admin.customize.override_default}} {{view Ember.Checkbox checkedBinding="selectedItem.override_default_style"}}</span>
|
|
|
|
<span>{{i18n admin.customize.enabled}} {{view Ember.Checkbox checkedBinding="selectedItem.enabled"}}</span>
|
|
|
|
{{#unless selectedItem.changed}}
|
|
|
|
<a class='preview-link' {{bindAttr href="selectedItem.previewUrl"}} target='_blank'>{{i18n admin.customize.preview}}</a>
|
2013-04-10 09:54:51 +08:00
|
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
<a href="/?preview-style=" target='_blank'>{{i18n admin.customize.undo_preview}}</a><br>
|
|
|
|
{{/unless}}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class='buttons'>
|
2013-05-21 03:27:58 +08:00
|
|
|
<button {{action save}} {{bindAttr disabled="selectedItem.disableSave"}} class='btn'>{{i18n admin.customize.save}}</button>
|
|
|
|
<span class='saving'>{{selectedItem.savingStatus}}</span>
|
2013-05-21 02:37:05 +08:00
|
|
|
<a {{action destroy}} class='delete-link'>{{i18n admin.customize.delete}}</a>
|
2013-02-06 03:16:51 +08:00
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
2013-04-10 13:55:20 +08:00
|
|
|
{{else}}
|
|
|
|
<p class="about">{{i18n admin.customize.about}}</p>
|
2013-02-06 03:16:51 +08:00
|
|
|
{{/if}}
|
|
|
|
<div class='clearfix'></div>
|
|
|
|
|