17 lines
991 B
HTML
17 lines
991 B
HTML
|
{% extends "base.html" %}{% block title %}AIF-NG Configurator | Disks{% endblock %}{% block body %}
|
||
|
<div class="jumbotron">
|
||
|
<h1>Disks</h1>
|
||
|
<p class="lead"><a href="/generator">Generator</a> > <a href="generator/storage">Storage</a> > <a
|
||
|
href="generator/storage/disk">Disk</a></p>
|
||
|
</div>
|
||
|
<h1>Disks</h1>
|
||
|
<p>In this section, you must specify device path names of the target disk(s) to install to. It is <b>highly</b>
|
||
|
recommended to use actual device paths, but you can specify ONE entry as "auto" which will use the first
|
||
|
available unformatted disk. It is not recommended to combine "auto" and actual device path(s).</p>
|
||
|
<p>DISK FORM</p>
|
||
|
<div class="text-center">
|
||
|
<button class="btn btn-primary" onclick="window.location.href = '/generator/storage';">Back</button>
|
||
|
<button class="btn btn-primary" onclick="window.location.href = '/generator';">Up</button>
|
||
|
<button class="btn btn-primary" onclick="window.location.href = '/generator/filesystem';">Next</button>
|
||
|
</div>
|
||
|
{% endblock %}
|