有构建板,支持多模型构建,但生成支撑的切片还有bug
This commit is contained in:
@@ -9,12 +9,20 @@
|
||||
<div class="card-body">
|
||||
<h5>CuraEngine Configurations</h5>
|
||||
<hr>
|
||||
<form method="POST">
|
||||
<form method="POST" action="{{ url_for('admin.settings') }}">
|
||||
<div class="mb-3">
|
||||
<label for="concurrent_slices" class="form-label">Concurrent Slices (Queue Worker limit)</label>
|
||||
<input type="number" class="form-control" id="concurrent_slices" value="2" min="1" max="10">
|
||||
<label for="offset_x" class="form-label">Plater Origin Offset X (mm)</label>
|
||||
<input type="number" class="form-control" name="offset_x" id="offset_x" value="{{ configs.get('offset_x', '0') }}">
|
||||
<div class="form-text">Adjust the X-axis compilation offset for combined files on the build plate.</div>
|
||||
</div>
|
||||
<button type="button" class="btn btn-primary" onclick="alert('Settings saved (demo)')">Save Settings</button>
|
||||
|
||||
<div class="mb-3">
|
||||
<label for="offset_y" class="form-label">Plater Origin Offset Y (mm)</label>
|
||||
<input type="number" class="form-control" name="offset_y" id="offset_y" value="{{ configs.get('offset_y', '0') }}">
|
||||
<div class="form-text">Adjust the Y-axis compilation offset for combined files on the build plate.</div>
|
||||
</div>
|
||||
|
||||
<button type="submit" class="btn btn-primary">Save Settings</button>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user