Integrate task runner into python tools

This commit is contained in:
ajp_anton
2026-08-08 17:21:50 +00:00
parent f8fb1eed75
commit 56d6194324
22 changed files with 1137 additions and 7 deletions
+18
View File
@@ -0,0 +1,18 @@
{% extends "base.html" %}
{% block title %}History · Server Maintenance{% endblock %}
{% block content %}
<p><a href="{{ url_for('index') }}">← Tasks</a></p>
<h1>History: {{ target_path }}</h1>
<ul class="history">
{% for run in runs %}
<li>
<a href="{{ url_for('run_detail', run_id=run.id) }}">Run #{{ run.id }}</a>
· {{ run.status }}
· {{ run.created_at|timestamp }}
{% if run.exit_code is not none %}· exit {{ run.exit_code }}{% endif %}
</li>
{% else %}
<li>No runs yet.</li>
{% endfor %}
</ul>
{% endblock %}