20 lines
474 B
Handlebars
20 lines
474 B
Handlebars
{{#if this.model.length}}
|
|
<h3>{{i18n "admin.plugins.installed"}}</h3>
|
|
<AdminPluginsList @plugins={{this.model}} />
|
|
{{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> |