{% extends '_base.html' %} {% load helpers %} {% block content %}

{% block title %}Scripts{% endblock %}

{% if scripts %} {% for module, module_scripts in scripts.items %}

{{ module|bettertitle }}

{% for class_name, script in module_scripts.items %} {% endfor %}
Name Description
{{ script }} {{ script.Meta.description }}
{% endfor %} {% else %}

No scripts found.

Scripts should be saved to {{ settings.SCRIPTS_ROOT }}. (This path can be changed by setting SCRIPTS_ROOT in NetBox's configuration.)

{% endif %}
{% endblock %}