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>
17 lines
507 B
HTML
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 %}
|