{% extends 'base/layout.html' %} {% block title %}{{ plugin.name }} Installed{% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}

Successfully Installed {{ plugin.name }}

Action Required

The package has been installed via pip, but you need to complete the following steps to activate it.

Step 1: Edit configuration.py

Add the following to your NetBox configuration file:

{{ config_snippet }}
Step 2: Run Migrations

Execute the following command to apply any database changes:

{{ commands.migrate }}
Step 3: Collect Static Files

Execute the following command to collect plugin static assets:

{{ commands.collectstatic }}
Step 4: Restart NetBox

Restart your NetBox service/container to load the plugin:

# Docker Compose
{{ commands.restart_docker }}

# Systemd
{{ commands.restart_systemd }}
{% endblock %}