This commit is contained in:
Ross
2025-12-11 21:59:35 +00:00
parent 1565241de6
commit 00f09d5e5b
@@ -48,14 +48,6 @@
</div> </div>
</div> </div>
<div class="mb-4">
<h2 class="subtitle">Builder export</h2>
<p>
<a class="button is-link" href="{% url 'rota:rota_export_builder' rota.id %}" target="_blank">View generated HTML (no solver)</a>
<a class="button" href="{% url 'rota:rota_export_builder' rota.id %}?solve=1">Generate + Solve (may be slow)</a>
</p>
</div>
<div class="mb-4"> <div class="mb-4">
<h2 class="subtitle">Constraint options</h2> <h2 class="subtitle">Constraint options</h2>
<div class="box"> <div class="box">
@@ -94,32 +86,7 @@
{% endif %} {% endif %}
</div> </div>
<hr /> {# Available constraint keys section removed per UX request #}
<h3 class="subtitle is-6">Available constraint keys</h3>
<div style="max-height:300px; overflow:auto;">
<table class="table is-fullwidth is-striped is-narrow">
<thead>
<tr>
<th>Key</th>
<th>Default</th>
<th>Current</th>
<th>Description</th>
</tr>
</thead>
<tbody>
{% for key, info in available_constraints.items %}
<tr>
<td><code>{{ key }}</code></td>
<td><pre style="white-space:pre-wrap;">{{ info.default|default:"" }}</pre></td>
<td><pre style="white-space:pre-wrap;">{{ info.current|default:"" }}</pre></td>
<td>{{ info.description|default:"" }}</td>
</tr>
{% empty %}
<tr><td colspan="4">No constraint metadata available</td></tr>
{% endfor %}
</tbody>
</table>
</div>
</div> </div>
</div> </div>