templates/technical_items/_form.html.twig line 1

  1. <style>
        .example-wrapper {margin: 1em auto; max-width: 100%; width: 100%;}
        body .example-wrapper button.signup-btn { color: #fff; margin-top: 21px;}
    </style>
    
    
    {{ form_start(form) }}
    
        <div class="row">
    
            {% if 'ROLE_ACCOUNTANT' in app.user.roles %}
    
                {% include "technical_items/roles-forms/accountant_form.html.twig" %}
    
            {% elseif 'ROLE_SYSTEM_ADMINISTRATOR' in app.user.roles %}
    
                {% include "technical_items/roles-forms/system_administrator_form.html.twig" %}
    
            {% else %}
    
                {% include "technical_items/roles-forms/admin_form.html.twig" %}
    
            {% endif %}
    
        </div>
    
    {{ form_end(form) }}