checkpoint

This commit is contained in:
2025-11-09 08:52:03 +00:00
parent 11fe895274
commit f9e1ad0768
4 changed files with 85 additions and 1 deletions

View File

@@ -151,6 +151,7 @@
<th>Recipe</th>
<th>Building</th>
<th>Inputs</th>
<th>Destinations</th>
<th class="mono">Target rate</th>
<th class="mono">Per-building output</th>
<th class="mono">Buildings</th>
@@ -175,6 +176,17 @@
<span class="pill">None</span>
{% endif %}
</td>
<td>
{% if s.destinations and s.destinations|length > 0 %}
<div>
{% for d in s.destinations %}
<div>{{ d.recipe }}{% if d.building %} ({{ d.building }}){% endif %} — <span class="mono">{{ '%.2f'|format(d.rate) }}</span></div>
{% endfor %}
</div>
{% else %}
<span class="pill">None</span>
{% endif %}
</td>
<td class="mono">{{ '%.2f'|format(s.target_rate) }}</td>
<td class="mono">{{ '%.2f'|format(s.per_building_output) }}</td>
<td class="mono">{{ '%.2f'|format(s.buildings_float) }} (~ {{ s.buildings }})</td>