feat: Update job detail and logs routes to return friendly pages instead of 404 errors

This commit is contained in:
JB
2025-12-21 16:21:45 -08:00
parent 63d179ba19
commit ede5343e0c
3 changed files with 32 additions and 4 deletions
@@ -0,0 +1,13 @@
{% 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 %}