{% extends 'base/layout.html' %} {% block title %}Plugins Store{% endblock %} {% block subtitle %}
Manage plugins for your environment
{% endblock %} {% block content-wrapper %}
{% block content %}

Installed Plugins


{% for plugin_name, plugin in plugins.installed.items %} {% include 'netbox_paas/inc/plugin_store.html' with plugin_name=plugin_name plugin=plugin %} {% endfor %}

Subscription Store


{% for plugin_name, plugin in plugins.not_installed.subscription.items %} {% include 'netbox_paas/inc/plugin_store.html' with plugin_name=plugin_name plugin=plugin %} {% endfor %}

Community Store


{% for plugin_name, plugin in plugins.not_installed.community.items %} {% include 'netbox_paas/inc/plugin_store.html' with plugin_name=plugin_name plugin=plugin %} {% endfor %}
{% endblock %}
{% endblock %}