{% translate 'Edit Local Disk Storage' %}
{% translate 'Edit Backup Disk Storage ' %} - {{pool}}
{% translate 'You can add a folder path to create a local storage as a backup destination.' %}
{% translate 'This option will keep the backups within your server itself. So the backup process will be fast. You can also use any network-attached storage service as local storage like NFS, SAMBA, NAS, etc' %}
{% if form.errors %}
{% for error in form.non_field_errors %}
{{ error|escape }}
{% endfor %}
{% for field in form %}
{% for error in field.errors %}
{{ error|escape }}
{% endfor %}
{% endfor %}
{% endif %}
{% if messages %}
{% for message in messages %}
{% if message.tags == "success" %}
{{ message }}
{% else %}
{{ message }}
{% endif %}
{% endfor %}
{% endif %}