{% extends "base.html" %} {% block content %}

{{ _("Disclaimer") }}

{{ _("These device profiles are provided as-is with no guarantee to work equally to the actual physical device they are named after. You may need to provide appropirate device drivers and/or configuration parameters for them to function properly. If you would like to see data modified, or have additional devices to add to the list, please raise an issue ticket at GitHub.", url="https://github.com/PiSCSI/piscsi/issues") }}

{{ _("Hard Disk Drives") }}

{% for hd in drive_properties['hd_conf']|sort(attribute='name') %} {% endfor %}
{{ _("Name") }} {{ _("Size (MiB)") }} {{ _("Description") }} {{ _("Action") }}
{% if hd.url != "" %} {{ hd.name }} {% else %} {{ hd.name }} {% endif %} {{ hd.size_mb }} {{ hd.description }}
.{{ hd.file_type }}

{{ _("CD/DVD Drives") }}

{{ _("This will create a properties file for the given CD-ROM or DVD image. No new image file will be created.") }}

{% for cd in drive_properties['cd_conf']|sort(attribute='name') %} {% endfor %}
{{ _("Name") }} {{ _("Description") }} {{ _("Action") }}
{% if cd.url != "" %} {{ cd.name }} {% else %} {{ cd.name }} {% endif %} {{ cd.description }}

{{ _("Removable Disk Drives") }}

{% for rm in drive_properties['rm_conf']|sort(attribute='name') %} {% endfor %}
{{ _("Name") }} {{ _("Size (MiB)") }} {{ _("Description") }} {{ _("Action") }}
{% if rm.url != "" %} {{ rm.name }} {% else %} {{ rm.name }} {% endif %} {{ rm.size_mb }} {{ rm.description }}
.{{ rm.file_type }}

{{ _("%(disk_space)s MiB disk space remaining on the Pi", disk_space=env["free_disk_space"]) }}

{{ _("Go to Home") }}

{% endblock content %}