{% translate 'FTP Deny Users' %}
{% translate 'Deny users from FTP' %}
{% translate 'The ftp accounts that are denied from using FTP. You can manually add users to the ftp deny file' %} /etc/ftpusers .
{% translate 'To allow root user you should enable that option in FTP server settings too' %}
{% 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 %}