{% extends 'generic/object.html' %} {% load helpers %} {% load form_helpers %} {% load i18n %} {% block title %}{{ plugin.title_long }}{% endblock %} {% block object_identifier %} {% endblock object_identifier %} {% block breadcrumbs %} {% endblock breadcrumbs %} {% block subtitle %} {% checkmark plugin.is_installed %} {% if plugin.is_installed %} v{{ plugin.installed_version }} {% trans "installed" %} {% else %} {% trans "Not installed" %} {% endif %} {% endblock %} {% block controls %}{% endblock %} {% block tabs %} {% endblock tabs %} {% block content %}

{% trans "Plugin Details" %}

{% trans "Name" %} {{ plugin.title_long }}
{% trans "Summary" %} {{ plugin.tag_line|placeholder }}
{% trans "Author" %} {{ plugin.author.name|placeholder }}
{% trans "URL" %} {% if plugin.homepage_url %} {{ plugin.homepage_url }} {% else %} {{ ''|placeholder }} {% endif %}
{% trans "License" %} {{ plugin.license_type|placeholder }}
{% trans "Description" %} {{ plugin.description_short|markdown }}
{% trans "Certified" %} {% checkmark plugin.is_certified %}
{% trans "Local" %} {% checkmark plugin.is_local %}

{% trans "Version History" %}

{% include 'htmx/table.html' %}
{% if not plugin.is_local and not settings.RELEASE.features.commercial %}

{% trans "Local Installation Instructions" %}

{% include 'core/inc/plugin_installation.html' %}
{% endif %} {% endblock content %}