2006-09-14 14:33:01 +02:00
|
|
|
<?cs # $Id$ ?>
|
|
|
|
|
|
|
|
<h1><?cs var:html_escape(Lang.Plugins.partition.Title.Partition) ?></h1>
|
|
|
|
|
|
|
|
<?cs if:subcount(Data.Plugins.partition.BlockDevices) > 0 ?>
|
|
|
|
|
|
|
|
<?cs call:print_form_header("plugins/partition") ?>
|
|
|
|
|
|
|
|
<p><label for="block_device"><?cs var:html_escape(Lang.Plugins.partition.Text.SelectDevice) ?>: </label><br/>
|
|
|
|
<select name="block_device" id="block_device" size="0">
|
|
|
|
<?cs each:x = Data.Plugins.partition.BlockDevices
|
|
|
|
?><option><?cs var:html_escape(x) ?></option>
|
|
|
|
<?cs /each ?>
|
|
|
|
</select></p>
|
|
|
|
|
2006-09-18 12:16:05 +02:00
|
|
|
<p class="note">
|
|
|
|
<?cs var:html_escape(Lang.Plugins.partition.Text.WarningMessage) ?>
|
|
|
|
</p>
|
|
|
|
|
2006-09-14 14:33:01 +02:00
|
|
|
<input type="hidden" name="step" value="add_partition" />
|
|
|
|
|
|
|
|
<button type="submit"><?cs var:html_escape(Lang.Plugins.partition.Button.SelectDevice) ?></button>
|
|
|
|
|
|
|
|
</form>
|
|
|
|
|
|
|
|
<?cs /if ?>
|
|
|
|
|
2006-09-18 12:16:05 +02:00
|
|
|
<?cs # a warning will be displayed if there are no disks available ?>
|
|
|
|
|