{% translate 'Modify Domain LiteSpeed Settings' %}
{% translate 'Change LiteSpeed Settings of ' %} {{domain}}
{% translate 'This option will allow you to tune and modify LiteSpeed settings on your website.' %}
{% translate 'Only modify it if you know what you are doing. Otherwise, we recommend contacting your support or LiteSpeed admin to tune this settings' %}
{% 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 %}