{% if plugin.author %}
{{ "PLUGIN_ADMIN.AUTHOR"|tu }}: |
{% 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"|tu }}: |
{{ plugin.homepage }} |
{% endif %}
{% if plugin.demo %}
{{ "PLUGIN_ADMIN.DEMO"|tu }}: |
{{ plugin.demo }} |
{% endif %}
{% if plugin.bugs %}
{{ "PLUGIN_ADMIN.BUG_TRACKER"|tu }}: |
{{ plugin.bugs }} |
{% endif %}
{% if plugin.keywords %}
{{ "PLUGIN_ADMIN.KEYWORDS"|tu }}: |
{{ plugin.keywords|join(', ') }} |
{% endif %}
{% if plugin.license %}
{{ "PLUGIN_ADMIN.LICENSE"|tu }}: |
{{ plugin.license }} |
{% endif %}
{% if plugin.description %}
{{ "PLUGIN_ADMIN.DESCRIPTION"|tu }}: |
{{ 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_ADMIN.README"|tu }}: |
{{ readme_link }} |
{% endif %}