Integrate task runner into python tools
This commit is contained in:
@@ -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 %}
|
||||
Reference in New Issue
Block a user