2022-05-11 09:48:53 +00:00
{% extends "ereuse_devicehub/base_site.html" %}
{% block main %}
< div class = "pagetitle" >
< h1 > {{ title }}< / h1 >
< nav >
< ol class = "breadcrumb" >
< li class = "breadcrumb-item" > {{ page_title }}< / li >
< / ol >
< / nav >
< / div > <!-- End Page Title -->
< section class = "section profile" >
2022-10-13 16:21:44 +00:00
< div class = "row" >
< div class = "col-xl-6" >
< div class = "card" >
< div class = "card-body" >
< div class = "pt-6 pb-2" >
< div class = "row pt-3" >
< div class = "col" >
< form method = "post" >
< table class = "table table-hover" >
< thead >
< tr >
< th scope = "col" > PHID< / th >
< th scope = "col" class = "text-center" > Erasure Host< / th >
< / tr >
< / thead >
< tbody >
{% for host in form.kangaroos %}
< tr >
< td > {{ host.phid }}< / td >
< td class = "text-center" >
< a href = "{{ url_for('workbench.erasure_host', id=host.id) }}" > < i class = "bi bi-x-lg" > < / i > < / a >
< / td >
< / tr >
{% endfor %}
< tr >
< td >
{% for f in form %}
{{ f }}
{% if f == form.phid and f.errors %}
< p class = "text-danger" >
{% for error in f.errors %}
{{ error }}< br / >
{% endfor %}
< / p >
{% endif %}
{% endfor %}
< / td >
< td class = "text-center" >
< input type = "submit" class = "btn btn-primary" value = "Add new host" / >
< / td >
< / tr >
< / tbody >
< / table >
< / form >
< / div >
< / div >
< / div >
< / div >
< / div >
< / div >
< / div >
2022-08-11 16:04:30 +00:00
< div class = "row" >
< div class = "col-xl-6" >
< div class = "card" >
< div class = "card-body" >
< div class = "pt-6 pb-2" >
< div class = "row pt-3" >
< div class = "col" >
< p > Please download the ISO file and the settings file of the
version you want and follow these steps
2022-08-12 11:37:15 +00:00
< a href = "https://help.usody.com/es/setup/setup-pendrive/" target = "_blank" class = "help" > steps< / a > < / p >
2022-08-11 16:04:30 +00:00
< / div >
< / div >
< / div >
< / div >
< / div >
< / div >
< div class = "col-xl-8" >
< / div >
< / div >
2022-08-05 09:07:54 +00:00
{% if demo %}
2022-05-11 09:48:53 +00:00
< div class = "row" >
< div class = "col-xl-6" >
< div class = "card" >
< div class = "card-body" >
< div class = "pt-6 pb-2" >
2022-10-11 14:00:38 +00:00
< h5 class = "card-title text-center pb-0 fs-4" > Usody Metadata Snapshots< / h5 >
2022-05-11 09:48:53 +00:00
< div class = "row pt-3" >
< div class = "col-5" >
2022-09-07 09:14:13 +00:00
< a href = "{{ iso.demo.url }}{{ iso.demo.iso }}" class = "btn btn-primary" > {{ iso.demo.iso }}< / a >
2022-05-11 09:48:53 +00:00
< / div >
< div class = "col" >
2022-08-05 09:07:54 +00:00
< p class = "small" >
2022-09-07 12:04:54 +00:00
Download Checksum: < a class = "help" href = "{{ iso.demo.url }}SHA512SUM" > SHA512SUM< / a > |
2022-08-12 11:37:15 +00:00
< a href = "https://help.usody.com/es/setup/setup-pendrive/" target = "_blank" class = "help" > Help< / a > < / p >
2022-08-05 09:07:54 +00:00
< / p >
2022-05-11 09:48:53 +00:00
< / div >
< / div >
2022-08-05 09:07:54 +00:00
< / div >
< / div >
< / div >
< / div >
< div class = "col-xl-8" >
< / div >
< / div >
{% else %}
{% for d, v in iso.items() %}
{% if d != 'demo' %}
< div class = "row" >
< div class = "col-xl-6" >
< div class = "card" >
< div class = "card-body" >
< div class = "pt-6 pb-2" >
< h5 class = "card-title text-center pb-0 fs-4" > Workbench {{ d }}< / h5 >
{% if d == 'v14' %}
< div class = "row" >
2022-06-23 16:08:16 +00:00
< div class = "col-5" >
2022-08-12 11:37:15 +00:00
< a href = "{{ url_for('workbench.settings') }}?opt=erease_basic" class = "btn btn-primary" style = "width: 200px;" > Get settings file!< / a >
2022-08-05 09:07:54 +00:00
< / div >
< div class = "col" >
2022-08-12 11:37:15 +00:00
< p class = "small" >
2022-08-12 14:08:59 +00:00
Settings for basic data erasure. | < a href = "https://help.usody.com/es/setup/setup-pendrive/" target = "_blank" class = "help" > Help< / a >
2022-08-12 11:37:15 +00:00
< / p >
2022-08-05 09:07:54 +00:00
< / div >
< / div >
< div class = "row pt-2" >
< div class = "col-5" >
2022-08-12 11:37:15 +00:00
< a href = "{{ url_for('workbench.settings') }}?opt=erease_sectors" class = "btn btn-primary" style = "width: 200px;" > Get settings file!< / a >
2022-06-23 16:08:16 +00:00
< / div >
< div class = "col" >
2022-08-12 11:37:15 +00:00
< p class = "small" >
2022-08-12 14:08:59 +00:00
Settings for advanced data erasure through sectors and hidden areas. Guarantee of data removal. | < a href = "https://help.usody.com/es/setup/setup-pendrive/" target = "_blank" class = "help" > Help< / a >
2022-08-12 11:37:15 +00:00
< / p >
2022-06-23 16:08:16 +00:00
< / div >
< / div >
2022-08-04 12:38:43 +00:00
{% else %}
2022-08-05 09:07:54 +00:00
< div class = "row" >
< div class = "col-5" >
2022-08-12 11:37:15 +00:00
< a href = "{{ url_for('workbench.settings') }}?opt=register" class = "btn btn-primary" style = "width: 200px;" > Get settings file!< / a >
2022-08-05 09:07:54 +00:00
< / div >
< div class = "col" >
2022-08-12 11:37:15 +00:00
< p class = "small" >
2022-08-12 14:08:59 +00:00
Settings for register devices.
2022-08-12 11:37:15 +00:00
< / p >
2022-08-05 09:07:54 +00:00
< / div >
< / div >
{% endif %}
2022-08-04 12:38:43 +00:00
{% if iso %}
2022-08-12 11:37:15 +00:00
< br / >
2022-08-05 09:07:54 +00:00
< div class = "row" >
2022-08-04 12:38:43 +00:00
< div class = "col-5" >
2022-09-07 09:14:13 +00:00
< a href = "{{ v.url }}{{ v.iso }}" class = "btn btn-primary" style = "width: 200px;" > Get ISO file< / a >
2022-08-04 12:38:43 +00:00
< / div >
< div class = "col" >
2022-08-12 11:37:15 +00:00
< p class = "small" >
2022-09-07 07:45:34 +00:00
{{ v.iso }}
2022-08-12 11:37:15 +00:00
< / p >
2022-08-04 12:38:43 +00:00
< p class = "small" >
2022-09-07 12:04:54 +00:00
Download Checksum: < a class = "help" href = "{{ v.url }}SHA512SUM" > SHA512SUM< / a > |
2022-08-11 16:04:30 +00:00
< a href = "https://help.usody.com/es/setup/setup-pendrive/" target = "_blank" class = "help" > Help< / a > < / p >
2022-08-04 12:38:43 +00:00
< / p >
< / div >
< / div >
{% endif %}
2022-05-11 09:48:53 +00:00
< / div >
< / div >
< / div >
< / div >
< div class = "col-xl-8" >
< / div >
< / div >
2022-08-05 09:07:54 +00:00
{% endif %}
{% endfor %}
{% endif %}
2022-10-10 15:44:20 +00:00
2022-10-11 14:00:38 +00:00
< div class = "col" >
2022-10-10 15:44:20 +00:00
< div class = "card" >
< div class = "card-body" >
< div class = "pt-6 pb-2" >
2022-10-11 14:00:38 +00:00
< h5 class = "card-title pb-0 fs-4" > Usody Metadata Snapshots< / h5 >
2022-10-10 15:44:20 +00:00
< div class = "row" >
2022-10-11 14:00:38 +00:00
< div class = "col-2" >
2022-10-10 15:44:20 +00:00
< a href = "" class = "btn btn-primary" style = "width: 200px;" > Download ISO< / a >
< / div >
2022-10-11 14:00:38 +00:00
< div class = "col-3" >
2022-10-10 15:44:20 +00:00
< p class = "small" >
Download Checksum: < a class = "help" href = "SHA512SUM" > SHA512SUM< / a > |
< a href = "https://help.usody.com/es/setup/setup-pendrive/" target = "_blank" class = "help" > Help< / a > < / p >
< / p >
< / div >
2022-10-11 14:00:38 +00:00
< div class = "col" > < / div >
2022-10-10 15:44:20 +00:00
< / div >
< div class = "row mt-3" >
2022-10-11 14:00:38 +00:00
< div class = "col-3" >
< div class = "border mr-2 p-2" >
2022-10-10 15:44:20 +00:00
< p > HW and Smart test< / p >
2022-10-11 14:00:38 +00:00
< a href = "{{ url_for('workbench.settings') }}?opt=erease_sectors" class = "btn btn-primary" style = "width: 100%" > Download settings file< / a >
2022-10-10 15:44:20 +00:00
< / div >
< / div >
< / div >
< / div >
< / div >
< / div >
< div class = "card" >
< div class = "card-body" >
< div class = "pt-8 pb-2" >
2022-10-11 14:00:38 +00:00
< h5 class = "card-title pb-0 fs-4" > Usody Erasure Snapshots< / h5 >
2022-10-10 15:44:20 +00:00
< div class = "row" >
2022-10-11 14:00:38 +00:00
< div class = "col-2" >
2022-10-10 15:44:20 +00:00
< a href = "" class = "btn btn-primary" style = "width: 200px;" > Download ISO< / a >
< / div >
2022-10-11 14:00:38 +00:00
< div class = "col-3" >
2022-10-10 15:44:20 +00:00
< p class = "small" >
Download Checksum: < a class = "help" href = "SHA512SUM" > SHA512SUM< / a > |
< a href = "https://help.usody.com/es/setup/setup-pendrive/" target = "_blank" class = "help" > Help< / a > < / p >
< / p >
< / div >
2022-10-11 14:00:38 +00:00
< div class = "col" > < / div >
2022-10-10 15:44:20 +00:00
< / div >
2022-10-11 14:00:38 +00:00
< div class = "row mt-3" >
< div class = "col-3" >
< div class = "border mr-2 p-2" >
< p >
Settings for basic data erasure using shred fast non-100% secured way of erasing data storage.
< / p >
< p >
One overwriting round using a randomn pattern.
Compliant with British HMG Infosec Standard 5,
Baseline Standard
< / p >
< a href = "{{ url_for('workbench.settings') }}?opt=erease_basic"
class="btn btn-primary"
style="width: 100%;">
Download settings file
< / a >
< / div >
< / div >
< div class = "col-3" >
< div class = "border mr-2 p-2" >
< p >
Settings for basic data erasure using shred fast non-100% secured way of erasing data storage.
< / p >
< p >
Settings for basic data erasure using shred fast non-100% secured way of erasing data storage.
< / p >
< p >
One overwriting round using a randomn pattern.
Compliant with British HMG Infosec Standard 5,
Baseline Standard
< / p >
< a href = "{{ url_for('workbench.settings') }}?opt=erease_basic" class = "align-bottom btn btn-primary" style = "width: 100%" > Download settings file< / a >
< / div >
< / div >
< / div >
2022-10-10 15:44:20 +00:00
< / div >
< / div >
< / div >
< / div >
< div class = "col-xl-8" >
< / div >
< / div >
2022-05-11 09:48:53 +00:00
< / section >
{% endblock main %}