2026-04-13 19:38:34 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html>
|
|
|
|
|
<head>
|
|
|
|
|
<title>Furtka Install</title>
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<h1>Step 2 - Choose Boot Drive</h1>
|
2026-04-13 19:44:29 +02:00
|
|
|
<form method="post" action="{{ url_for('install_step_2') }}">
|
|
|
|
|
<p>Boot Drive:
|
|
|
|
|
<select name="boot_drive_uuid" required>
|
|
|
|
|
{% for d in drives %}
|
|
|
|
|
<option value="{{ d.name }}">{{ d.name }} ({{ d.size }}, score {{ d.score }})</option>
|
|
|
|
|
{% endfor %}
|
|
|
|
|
</select>
|
|
|
|
|
</p>
|
2026-04-13 19:38:34 +02:00
|
|
|
<input type="submit" value="Go to Overview" />
|
|
|
|
|
</form>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|