left4me/l4d2web/templates/overlay_jobs.html
mwiegand fb3c6be052
feat(l4d2-web): per-overlay job list + redirect to job after build-triggering edits
Saving a script overlay or adding/removing workshop items now redirects to the
enqueued build job's detail page so logs are immediately visible. Added a new
/overlays/<id>/jobs page (linked as "all builds →" from the overlay detail
page) for browsing the full build history. Renamed the script "Save" button to
"Save and build" to make the side effect explicit.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-08 17:44:22 +02:00

17 lines
507 B
HTML

{% extends "base.html" %}
{% block title %}Build jobs for {{ overlay.name }} | left4me{% endblock %}
{% block content %}
<section class="panel">
<div class="page-heading">
<h1>Build jobs for {{ overlay.name }}</h1>
<a href="/overlays/{{ overlay.id }}">Back to overlay</a>
</div>
{% set show_user = true %}
{% set show_server = false %}
{% set show_cancel = true %}
{% set cancel_next = "/overlays/" ~ overlay.id ~ "/jobs" %}
{% include "_job_table.html" %}
</section>
{% endblock %}