HEX
Server: LiteSpeed
System: Linux d8 4.18.0-553.121.1.lve.el8.x86_64 #1 SMP Thu Apr 30 16:40:41 UTC 2026 x86_64
User: wbwebdes (3015)
PHP: 8.1.31
Disabled: exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname
Upload Files
File: /home/wbwebdes/domains/uren-registratie.blankevoort.net/public_html/templates/team/edit.html.twig
{% extends kimai_context.modalRequest ? 'form.html.twig' : 'base.html.twig' %}
{% import "macros/widgets.html.twig" as widgets %}

{% block main %}
<div class="row">
    <div class="col-md-6">
        {% include 'team/member-form.html.twig' %}
    </div>
    <div class="col-md-6">
        {% if customerForm is defined and customerForm is not null %}
            {% embed '@theme/embeds/card.html.twig' with {collapsible: true, collapsed: (team.customers|length == 0)} %}
                {% from "macros/status.html.twig" import status_count %}
                {% block box_title %}
                    {{ 'teams.customer_access'|trans({}, 'teams') }}
                    {{ status_count(team.customers|length) }}
                {% endblock %}
                {% block box_body %}
                    {{ form(customerForm) }}
                {% endblock %}
            {% endembed %}
        {% endif %}

        {% if projectForm is defined and projectForm is not null %}
            {% embed '@theme/embeds/card.html.twig' with {collapsible: true, collapsed: (team.projects|length == 0)} %}
                {% from "macros/status.html.twig" import status_count %}
                {% block box_title %}
                    {{ 'teams.project_access'|trans({}, 'teams') }}
                    {{ status_count(team.projects|length) }}
                {% endblock %}
                {% block box_body %}
                    {{ form(projectForm) }}
                {% endblock %}
            {% endembed %}
        {% endif %}
    </div>
</div>
{% endblock %}

{% block javascripts %}
    {{ parent() }}
    <script type="text/javascript">
        document.addEventListener('kimai.initialized', (event) => {
            /** @type {KimaiAPI} API */
            const API = event.detail.kimai.getPlugin('api');
            /** @type {KimaiAlert} ALERT */
            const ALERT = event.detail.kimai.getPlugin('alert');

            {% if customerForm is defined and customerForm is not null %}
                document.getElementById('team_customer_form').addEventListener('change',
                    (event) => {
                        if (event.target.matches('input[type=checkbox]')) {
                            const checkbox = event.target;
                            const customerId = checkbox.value;
                            if (checkbox.checked) {
                                API.post(
                                    '{{ path('post_team_customer', {'id': team.id, 'customerId': '000'}) }}'.replace(/000/, customerId),
                                    {},
                                    (json) => {ALERT.success('action.update.success');},
                                    (error) => {ALERT.error('action.update.error', error);}, // TODO test me
                                );
                            } else {
                                API.delete(
                                    '{{ path('delete_team_customer', {'id': team.id, 'customerId': '000'}) }}'.replace(/000/, customerId),
                                    (json) => {ALERT.success('action.delete.success');},
                                    (error) => {ALERT.error('action.delete.error', error);}, // TODO test me
                                );
                            }
                        }
                    }
                );
            {% endif %}

            {% if projectForm is defined and customerForm is not null %}
                document.getElementById('team_project_form').addEventListener('change',
                    (event) => {
                        if (event.target.matches('input[type=checkbox]')) {
                            const checkbox = event.target;
                            const projectId = checkbox.value;
                            if (checkbox.checked) {
                                API.post(
                                    '{{ path('post_team_project', {'id': team.id, 'projectId': '000'}) }}'.replace(/000/, projectId),
                                    {},
                                    (json) => {ALERT.success('action.update.success');},
                                    (error) => {ALERT.error('action.update.error', error);}, // TODO test me
                                );
                            } else {
                                API.delete(
                                    '{{ path('delete_team_project', {'id': team.id, 'projectId': '000'}) }}'.replace(/000/, projectId),
                                    (json) => {ALERT.success('action.delete.success');},
                                    (error) => {ALERT.error('action.delete.error', error);}, // TODO test me
                                );
                            }
                        }
                    }
                );
            {% endif %}
        });
    </script>
{% endblock %}