{% translate 'Modify Domain PHP INI Settings' %}
{% translate 'Change PHP INI values of ' %} {{domain}}
{% translate 'This option will allow you to set up custom php.ini settings for your website.' %}
{% translate 'If your domain is using php-fpm these values will be automatically inherited to the php 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 %}