mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-14 18:52:05 +03:00
999aea27e5
- improving the implementation of thenOpenAndWaitForPageLoad - adding a class into the settings templates to more easily test which pane we are on - adding more, and updating more of the settings tests - added the editor tests
28 lines
856 B
Handlebars
28 lines
856 B
Handlebars
<header class="fade-in">
|
|
<button class="button-back">Back</button>
|
|
<h2 class="title">Apps</h2>
|
|
</header>
|
|
|
|
<section class="content settings-apps fade-in">
|
|
<table class="js-apps">
|
|
<thead>
|
|
<th>App name</th>
|
|
<th>Status</th>
|
|
</thead>
|
|
<tbody>
|
|
{{#each itemController="settings/app"}}
|
|
<tr>
|
|
<td>
|
|
{{#if package}}{{package.name}} - {{package.version}}{{else}}{{name}} - package.json missing :({{/if}}
|
|
</td>
|
|
<td>
|
|
<button {{action toggleApp this}} {{bind-attr class=":js-button-active activeClass:button-delete inactiveClass:button-add activeClass:js-button-deactivate"}}>
|
|
{{buttonText}}
|
|
</button>
|
|
</td>
|
|
</tr>
|
|
{{/each}}
|
|
</tbody>
|
|
</table>
|
|
</section>
|