Back to Netbox

Plugin

netbox/templates/core/plugin.html

4.6.51.6 KB
Original Source

{% 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 "Plugins" %} {% endblock breadcrumbs %} {% block subtitle %} {% checkmark plugin.is_local %} {% if plugin.is_local %} 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" %}

{% render_table table 'inc/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 %}