{% extends "account/base.html.twig" %} {% block title %} {{ "new client application" | trans }} {% endblock %} {% set selected = "" %} {# form input macro #} {% macro input(name, value, violations, property, class="", type, size) %} {% if violations is none %} {% else %} {% set hasError = "false" %} {% for violation in violations %} {% if violation.getPropertyPath == property and hasError == "false" %} {% set hasError = "true" %} {{ violation.getInvalidValue }} - {{violation.getMessage}} {% endif %} {% endfor %} {% if hasError == "false" %} {% endif %} {% endif %} {% endmacro %} {# form textare macro #} {% macro textarea(name, value, violations,property, rows, cols, class="") %} {% if violations is none %} {% else %} {% set hasError = "false" %} {% for violation in violations %} {% if violation.getPropertyPath == property and hasError == "false" %} {% set hasError = "true" %} {{violation.getMessage}} {% endif %} {% endfor %} {% if hasError == "false" %} {% endif %} {% endif %} {% endmacro %} {% block content_account %}
{% endblock %}