{% extends "base.html" %} {% block title %}Scripts - PyRunner{% endblock %} {% block content %}
{% include "cpanel/_sidebar.html" %}

Scripts

Manage your Python scripts

New Script
{% if all_tags %}
Tag: {% if selected_tag %} Clear {% endif %}
{% endif %}
{% if scripts %}
{% for script in scripts %} {% endfor %}
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
{% else %}

No scripts yet

Create your first Python script to get started.

Create Script
{% endif %}
{% endblock %}