mirror of
https://github.com/discourse/discourse.git
synced 2024-11-29 04:33:52 +08:00
e37fb3042d
* Remove checkmark for official plugins * Add author for plugin, which is By Discourse for all discourse and discourse-org github plugins * Link to meta topic instead of github repo * Add experimental flag for plugin metadata and show this as a badge on the plugin list if present --------- Co-authored-by: chapoi <101828855+chapoi@users.noreply.github.com>
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> |