2013-02-05 14:16:51 -05:00
|
|
|
|
2013-04-10 01:55:20 -04:00
|
|
|
<div class='content-list span6'>
|
|
|
|
<h3>{{i18n admin.customize.long_title}}</h3>
|
|
|
|
<ul>
|
2013-02-21 15:55:58 -05:00
|
|
|
{{#each content}}
|
2013-04-10 01:55:20 -04:00
|
|
|
<li><a {{action selectStyle this target="controller"}} {{bindAttr class="this.selected:active"}}>{{this.description}}</a></li>
|
2013-02-05 14:16:51 -05:00
|
|
|
{{/each}}
|
|
|
|
</ul>
|
2013-04-10 01:55:20 -04:00
|
|
|
<button {{action newCustomization target="controller"}} class='btn'>{{i18n admin.customize.new}}</button>
|
2013-02-05 14:16:51 -05:00
|
|
|
</div>
|
|
|
|
|
2013-04-10 01:55:20 -04:00
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
{{#if content.selectedItem}}
|
2013-04-09 21:54:51 -04:00
|
|
|
<div class='current-style'>
|
2013-02-05 14:16:51 -05: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>
|
|
|
|
</ul>
|
2013-04-09 21:54:51 -04:00
|
|
|
</div>
|
2013-02-05 14:16:51 -05:00
|
|
|
|
|
|
|
{{#with content.selectedItem}}
|
2013-05-20 12:56:36 -04:00
|
|
|
{{textField class="style-name" value=name}}
|
2013-02-05 14:16:51 -05:00
|
|
|
{{#if view.headerActive}}
|
|
|
|
{{view Discourse.AceEditorView contentBinding="header" mode="html"}}
|
|
|
|
{{/if}}
|
|
|
|
{{#if view.stylesheetActive}}
|
|
|
|
{{view Discourse.AceEditorView contentBinding="stylesheet" mode="css"}}
|
|
|
|
{{/if}}
|
|
|
|
{{/with}}
|
|
|
|
<br>
|
|
|
|
<div class='status-actions'>
|
|
|
|
<span>{{i18n admin.customize.override_default}} {{view Ember.Checkbox checkedBinding="content.selectedItem.override_default_style"}}</span>
|
|
|
|
<span>{{i18n admin.customize.enabled}} {{view Ember.Checkbox checkedBinding="content.selectedItem.enabled"}}</span>
|
|
|
|
{{#unless content.selectedItem.changed}}
|
|
|
|
<a class='preview-link' {{bindAttr href="content.selectedItem.previewUrl"}} target='_blank'>{{i18n admin.customize.preview}}</a>
|
2013-04-09 21:54:51 -04:00
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
<a href="/?preview-style=" target='_blank'>{{i18n admin.customize.undo_preview}}</a><br>
|
|
|
|
{{/unless}}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class='buttons'>
|
2013-04-10 01:55:20 -04:00
|
|
|
<button {{action save target="controller"}} {{bindAttr disabled="content.selectedItem.disableSave"}} class='btn'>{{i18n admin.customize.save}}</button>
|
|
|
|
<span class='saving'>{{content.selectedItem.savingStatus}}</span>
|
2013-04-09 21:54:51 -04:00
|
|
|
<a {{action destroy target="controller"}} class='delete-link'>{{i18n admin.customize.delete}}</a>
|
2013-02-05 14:16:51 -05:00
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
2013-04-10 01:55:20 -04:00
|
|
|
{{else}}
|
|
|
|
<p class="about">{{i18n admin.customize.about}}</p>
|
2013-02-05 14:16:51 -05:00
|
|
|
{{/if}}
|
|
|
|
<div class='clearfix'></div>
|
|
|
|
|