diff --git a/netbox/templates/extras/script_result.html b/netbox/templates/extras/script_result.html
index 78d67e6ac..59ca8a69d 100644
--- a/netbox/templates/extras/script_result.html
+++ b/netbox/templates/extras/script_result.html
@@ -4,105 +4,113 @@
{% load log_levels %}
{% load static %}
-{% block title %}{{ script }}
-
- Run: {{ result.created|annotated_date }}
- {% if result.completed %}
- Duration: {{ result.duration }}
- {% else %}
-
- Loading...
-
- {% endif %}
-
-
- {% if result.completed %}
-
-
-
-
-
-
-
- Line |
- Level |
- Message |
-
- {% for log in result.data.log %}
-
- {{ forloop.counter }} |
- {% log_level log.status %} |
- {{ log.message|render_markdown }} |
-
- {% empty %}
-
-
- No log output
- |
-
- {% endfor %}
-
-
- {% if execution_time %}
-
- {% endif %}
-
-
-
- {% else %}
-
- {% endif %}
-
-
-
{{ result.data.output }}
-
-
-
{{ script.filename }}
-
{{ script.source }}
-
-
+{% block title %}{{ script }}{% endblock %}
+
+{% block subtitle %}
+ {{ script.Meta.description|render_markdown }}
+
+
+ Run: {{ result.created|annotated_date }}
+ {% if result.completed %}
+ Duration: {{ result.duration }}
+ {% else %}
+
+ Loading...
+
+ {% endif %}
+
+
+ {% if result.completed %}
+
+
+
+
+
+
+
+ Line |
+ Level |
+ Message |
+
+ {% for log in result.data.log %}
+
+ {{ forloop.counter }} |
+ {% log_level log.status %} |
+ {{ log.message|render_markdown }} |
+
+ {% empty %}
+
+
+ No log output
+ |
+
+ {% endfor %}
+
+
+ {% if execution_time %}
+
+ {% endif %}
+
+
+
+ {% else %}
+
+ {% endif %}
+
+
+
{{ result.data.output }}
+
+
+
{{ script.filename }}
+
{{ script.source }}
+
+