{% extends 'base/layout.html' %} {% load helpers catalog_tags %} {% block title %}{{ plugin.name }}{% endblock %} {% block breadcrumbs %}
{{ plugin.summary }}
{% endif %} {% if plugin.description %}| Action | Version | Status | User | Date |
|---|---|---|---|---|
| {{ log.get_action_display }} | {{ log.version }} | {% if log.status == "success" %} {{ log.get_status_display }} {% elif log.status == "failed" %} {{ log.get_status_display }} {% elif log.status == "in_progress" %} {{ log.get_status_display }} {% else %} {{ log.get_status_display }} {% endif %} | {{ log.user }} | {{ log.started|date:"Y-m-d H:i" }} |
| Version | {{ plugin.version }} |
|---|---|
| Author | {{ plugin.author|default:"-" }} |
| License | {{ plugin.license|default:"-" }} |
| Category | {{ plugin.category }} |
| Certification | {% if plugin.certification == "certified" %} Certified {% elif plugin.certification == "compatible" %} Compatible {% elif plugin.certification == "deprecated" %} Deprecated {% else %} Untested {% endif %} |
| Python | {{ plugin.requires_python|default:"-" }} |
| NetBox Min | {{ plugin.netbox_min_version }} |
| NetBox Max | {{ plugin.netbox_max_version }} |
| Last Day | {{ plugin.downloads_last_day|default:"0" }} |
|---|---|
| Last Week | {{ plugin.downloads_last_week|default:"0" }} |
| Last Month | {{ plugin.downloads_last_month|default:"0" }} |
For Docker or manual installations:
{{ plugin.name }}{% if plugin.version %}>={{ plugin.version }}{% endif %}
PLUGINS = ["{{ plugin.module_name }}"]