{% extends 'base/layout.html' %} {% load helpers %} {% block title %}Scripts{% endblock %} {% block tabs %} {% endblock tabs %} {% block content-wrapper %}
{% if scripts %} {% for module, module_scripts in scripts.items %}
{{ module|bettertitle }}
{% for class_name, script in module_scripts.items %} {% if script.result %} {% else %} {% endif %} {% endfor %}
Name Status Description Last Run
{{ script }} {% include 'extras/inc/job_label.html' with result=script.result %} {{ script.Meta.description|render_markdown|placeholder }} {{ script.result.created|annotated_date }} Never
{% 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 content-wrapper %}