mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 08:38:42 +08:00
52894b9d7c
It will help to find out the current version of the plugins even without the `docker_manager` plugin.
91 lines
2.6 KiB
Handlebars
91 lines
2.6 KiB
Handlebars
{{#if this.model.length}}
|
|
<h3>{{i18n "admin.plugins.installed"}}</h3>
|
|
|
|
<table class="admin-plugins grid">
|
|
<thead>
|
|
<tr>
|
|
<th></th>
|
|
<th>{{i18n "admin.plugins.name"}}</th>
|
|
<th>{{i18n "admin.plugins.version"}}</th>
|
|
<th>{{i18n "admin.plugins.enabled"}}</th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{{#each this.model as |plugin|}}
|
|
<tr data-plugin-name={{plugin.name}}>
|
|
<td>
|
|
{{#if plugin.is_official}}
|
|
{{d-icon
|
|
"check-circle"
|
|
title="admin.plugins.official"
|
|
class="admin-plugins-official-badge"
|
|
}}
|
|
{{/if}}
|
|
</td>
|
|
|
|
<td class="plugin-name">
|
|
<div class="name">
|
|
{{#if plugin.url}}
|
|
<a
|
|
href={{plugin.url}}
|
|
rel="noopener noreferrer"
|
|
target="_blank"
|
|
>{{plugin.name}}</a>
|
|
{{else}}
|
|
{{plugin.name}}
|
|
{{/if}}
|
|
</div>
|
|
<div class="about">
|
|
{{plugin.about}}
|
|
</div>
|
|
</td>
|
|
<td class="version">
|
|
<div class="label">{{i18n "admin.plugins.version"}}</div>
|
|
{{plugin.version}}<br />
|
|
<PluginCommitHash @plugin={{plugin}} />
|
|
</td>
|
|
<td class="col-enabled">
|
|
<div class="label">{{i18n "admin.plugins.enabled"}}</div>
|
|
{{#if plugin.enabled_setting}}
|
|
{{#if plugin.enabled}}
|
|
{{i18n "admin.plugins.is_enabled"}}
|
|
{{else}}
|
|
{{i18n "admin.plugins.not_enabled"}}
|
|
{{/if}}
|
|
{{else}}
|
|
{{i18n "admin.plugins.is_enabled"}}
|
|
{{/if}}
|
|
</td>
|
|
<td class="settings">
|
|
{{#if this.currentUser.admin}}
|
|
{{#if plugin.has_settings}}
|
|
<DButton
|
|
@class="btn-default"
|
|
@action={{route-action "showSettings"}}
|
|
@actionParam={{plugin}}
|
|
@icon="cog"
|
|
@label="admin.plugins.change_settings_short"
|
|
/>
|
|
{{/if}}
|
|
{{/if}}
|
|
</td>
|
|
</tr>
|
|
{{/each}}
|
|
</tbody>
|
|
</table>
|
|
{{else}}
|
|
<p>{{i18n "admin.plugins.none_installed"}}</p>
|
|
{{/if}}
|
|
|
|
<p class="admin-plugins-howto"><a
|
|
href="https://meta.discourse.org/t/install-a-plugin/19157"
|
|
>{{i18n "admin.plugins.howto"}}</a></p>
|
|
|
|
<span>
|
|
<PluginOutlet
|
|
@name="admin-below-plugins-index"
|
|
@connectorTagName="div"
|
|
@outletArgs={{hash model=this.model}}
|
|
/>
|
|
</span> |