19 lines
590 B
HTML
19 lines
590 B
HTML
{% 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 %}
|