mirror of
https://github.com/denizsafak/abogen.git
synced 2026-07-18 13:40:27 +02:00
14 lines
436 B
HTML
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 %}
|