{% if plugin.author %}
{{ "PLUGIN_ADMIN.AUTHOR"|t }}: |
{% if plugin.author.url %}
{{ plugin.author.name }}
{% else %}
{{ plugin.author.name }}
{% endif %}
{% if plugin.author.email %}
- {{ plugin.author.email }}
{% endif %}
|
{% endif %}
{% if plugin.homepage %}
{{ "PLUGIN_ADMIN.HOMEPAGE"|t }}: |
{{ plugin.homepage }} |
{% endif %}
{% if plugin.demo %}
{{ "PLUGIN_ADMIN.DEMO"|t }}: |
{{ plugin.demo }} |
{% endif %}
{% if plugin.bugs %}
{{ "PLUGIN_ADMIN.BUG_TRACKER"|t }}: |
{{ plugin.bugs }} |
{% endif %}
{% if plugin.keywords %}
{{ "PLUGIN_ADMIN.KEYWORDS"|t }}: |
{{ plugin.keywords|join(', ') }} |
{% endif %}
{% if plugin.license %}
{{ "PLUGIN_ADMIN.LICENSE"|t }}: |
{% if plugin.license|starts_with('http') %}
{{ plugin.license }} |
{% else %}
{{ plugin.license }} |
{% endif %}
{% endif %}
{% if plugin.description %}
{{ "PLUGIN_ADMIN.DESCRIPTION"|t }}: |
{{ plugin.description_html|raw }} |
{% endif %}
{% if plugin.readme or plugin.homepage %}
{% set readme_link = plugin.readme ?: plugin.docs|default(plugin.homepage ~ '/blob/master/README.md') %}
{{ plugin.readme ? "PLUGIN_ADMIN.README"|t : "PLUGIN_ADMIN.DOCS"|t }}: |
{{ readme_link }} |
{% endif %}
{% if admin.gpm.findPackage(plugin.slug, true).changelog %}
{{ "PLUGIN_ADMIN.CHANGELOG"|t }}: |
View Changelog |
{% endif %}