{% extends "freeadmin/generic_form.html" %} {% block onSubmit %} doSubmit({ form: this, event: e, url: '{{ request.path }}', progressbar: { steps: [ {"label": gettext("Verifying files n packages")}, ], poolUrl: '{% url "system_verify_progress" %}', mode: 'single', fileUpload: false } }); {% endblock %} {% block form %} {% if error %}

The following Inconsistencies were found in your Current Install:

{% if checksums %}

List of Checksum Mismatches:

{% for error_dict in checksums %} {% endfor %}
{{ error_dict.path }}
{% endif %} {% if notfound %}

List of Files/Directories/Symlinks not Found:

{% for error_dict in notfound %} {% endfor %}
{{ error_dict.path }}
{% endif %} {% if wrongtype %}

List of Incorrect Filetypes:

{% for error_dict in wrongtype %} {% endfor %}
{{ error_dict.path }} {{ error_dict.problem }}
{% endif %} {% if perms %}

List of Permission Errors:

{% for error_dict in perms %} {% endfor %}
{{ error_dict.path }} {{ error_dict.problem|linebreaksbr }}
{% endif %} {% elif success %} {% blocktrans %}All files verified successfully!{% endblocktrans %} {% else %} {% blocktrans %}Start the Verification process now?{% endblocktrans %}

{% endif %} {% endblock %} {% block oklabel %} {% trans "OK" %} {% endblock %} {% block buttons %} {% if error or success %} {% else %} {{ block.super }} {% endif %} {% endblock %}