netbox/templates/core/plugin.html
{% extends 'generic/object.html' %} {% load helpers %} {% load form_helpers %} {% load i18n %} {% load render_table from django_tables2 %} {% block title %}{{ plugin.title_long }}{% endblock %} {% block object_identifier %} {% endblock object_identifier %} {% block breadcrumbs %}
| {% 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 %} |
{% render_table table 'inc/table.html' %}
{% if not plugin.is_local and not settings.RELEASE.features.commercial %}
{% include 'core/inc/plugin_installation.html' %}
{% endif %} {% endblock content %}