{% extends 'base/layout.html' %} {% block title %}{{ plugin.name }}{% endblock %} {% block content %}
← Zurück zum Katalog

{{ plugin.name }}

{{ plugin.summary }}

{% for action in actions %} {% if action == 'install' %}Installieren{% elif action == 'update' %}Aktualisieren{% elif action == 'enable' %}Aktivieren{% elif action == 'disable' %}Deaktivieren{% else %}Deinstallieren{% endif %} {% endfor %}
{% if local_status and local_status.restart_required %}
Ein Neustart von NetBox und den Workern ist erforderlich.
{% endif %}

README / Beschreibung

{{ plugin.description|default:plugin.summary|linebreaksbr }}

Paket

Distribution
{{ plugin.package_name }}
Import
{{ plugin.import_name }}
Installiert
{{ state.installed_version|default:"–" }}
Aktiv
{{ state.enabled|yesno:"Ja,Nein" }}
NetBox
{{ plugin.min_netbox_version|default:"–" }} – {{ plugin.max_netbox_version|default:"–" }}
{% if plugin.repository_url %} Repository öffnen {% endif %}

Releases

{% for item in releases %}
{{ item.release.version }} {% if item.compatible and item.release.approved and item.release.immutable and item.release.sha256 %} installierbar {% else %} gesperrt {% endif %}
{% empty %}
Keine Releases
{% endfor %}
{% endblock %}