{% extends "base.html" %} {% block title %}Scripts - PyRunner{% endblock %} {% block content %}
Manage your Python scripts
| Name | Environment | Tags | Status | Runs | Success Rate | Updated |
|---|---|---|---|---|---|---|
|
{{ script.name }}
{% if script.description %}
{{ script.description|truncatechars:50 }} {% endif %} |
{{ script.environment.name }} |
{% for tag in script.tags.all %}
{{ tag.name }}
{% empty %}
-
{% endfor %}
|
{% if script.is_archived %} Archived {% elif script.is_enabled %} Enabled {% else %} Disabled {% endif %} | {{ script.run_count }} | {% if script.run_count > 0 %} {{ script.success_rate|floatformat:0 }}% {% else %} - {% endif %} | {{ script.updated_at|timesince }} ago |