{% extends '_base.html' %} {% load helpers %} {% load form_helpers %} {% load log_levels %} {% block title %}{{ script }}{% endblock %} {% block content %}

{{ script }}

{{ script.Meta.description }}

{% if execution_time or script.log %}
Script Log
{% for level, message in script.log %} {% empty %} {% endfor %}
Line Level Message
{{ forloop.counter }} {% log_level level %} {{ message|gfm }}
No log output
{% if execution_time %} {% endif %}
{% endif %}
{% if not perms.extras.run_script %}
You do not have permission to run scripts.
{% endif %}
{% csrf_token %} {% if form.requires_input %}
Script Data
{% render_form form %}
{% else %}
This script does not require any input to run.
{% render_form form %} {% endif %}
Cancel
{{ output }}

{{ script.filename }}

{{ script.source }}
{% endblock %}