Files
abogen/abogen/webui/templates/job_logs_missing.html
T

14 lines
436 B
HTML

{% extends "base.html" %}
{% block title %}Job Not Found{% endblock %}
{% block content %}
<section class="card logs-static">
<div class="card__title-row">
<div class="card__title">Job Not Found</div>
</div>
<p>This job no longer exists. It may have been deleted or the server was restarted.</p>
<p><a href="{{ url_for('main.index') }}" class="button button--primary">Return to Dashboard</a></p>
</section>
{% endblock %}