{#
 # This file is part of the CRUDlex package.
 #
 # (c) Philip Lehmann-Böhm <philip@philiplb.de>
 #
 # For the full copyright and license information, please view the LICENSE
 # file that was distributed with this source code.
 #}

{% extends layout %}

{% block content %}
    {% set definition = entity.getDefinition() %}
    {% set fields = definition.getPublicFieldNames() %}

    <a id="crudBtnList" href="{{ app.url_generator.generate('crudList', {'entity': crudEntity}) }}" type="button" class="btn btn-default btn-success btn-crudlex">{{ 'crudlex.button.list'|trans }}</a>
    <a id="crudBtnNew" href="{{ app.url_generator.generate('crudCreate', {'entity': crudEntity}) }}" class="btn btn-success btn-crudlex">{{ 'crudlex.button.new'|trans }}</a>
    <table class="table table-striped crudEntityShowTable" id="crudEntity{{ crudEntity }}">
        <tr>
            <th>{{ 'crudlex.show.field'|trans }}</th>
            <th>{{ 'crudlex.show.value'|trans }}</th>
        </tr>

        {% for field in fields %}
            <tr id="crudRow{{ field }}">
                <td>
                    {{ definition.getFieldLabel(field) }}
                    {% if definition.getField(field, 'description') %}
                        <p><small>{{ definition.getField(field, 'description') }}</small></p>
                    {% endif %}
                </td>
                <td id="crudField{{ field }}">
                    {% include app.crud.getTemplate(app, 'template', 'renderField', crudEntity) with {
                        entity: entity,
                        crudEntity: crudEntity,
                        definition: definition,
                        field: field,
                        mode: 'show'
                    } only %}
                </td>
            </tr>
        {% endfor %}
        <tr>
            <td colspan="2">
                <a id="crudBtnEdit" href="{{ app.url_generator.generate('crudEdit', {'entity': crudEntity, 'id': entity.get('id')}) }}" type="button" class="btn btn-default btn-warning">{{ 'crudlex.button.edit'|trans }}</a>
                <form class="crudFormDelete" style="display: inline-block" onSubmit="return confirm('{{ 'crudlex.deleteEntityConfirmation'|trans({'%id%': entity.get('id')}) }}');" method="POST" action="{{ app.url_generator.generate('crudDelete', {'entity': crudEntity, 'id': entity.get('id')}) }}">
                    <input id="crudBtnDelete" type="submit" class="btn btn-default btn-danger" value="{{ 'crudlex.button.delete'|trans }}" />
                </form>
            </td>
        </tr>

    </table>

    {% for i, child in children %}
        <h2>{{ child[0] }}</h2>
        <table class="table table-striped crudEntityChildListTable" id="crudChild{{ i }}">
            <tr>
                <th>{{ 'crudlex.show.childName'|trans }}</th>
                <th>{{ 'crudlex.show.childAction'|trans }}</th>
            </tr>
            {% for childEntity in child[3] %}
                <tr>
                    <td>
                        {{ childEntity.get(child[2]) }}
                    </td>
                    <td>
                        <a id="crudBtnShow{{ childEntity.get('id') }}" href="{{ app.url_generator.generate('crudShow', {'entity': child[1], 'id': childEntity.get('id')}) }}" type="button" class="btn btn-default btn-xs btn-success">{{ 'crudlex.button.show'|trans }}</a>
                        <a id="crudBtnEdit{{ childEntity.get('id') }}" href="{{ app.url_generator.generate('crudEdit', {'entity': child[1], 'id': childEntity.get('id')}) }}" type="button" class="crudBtnEdit btn btn-default btn-xs btn-warning">{{ 'crudlex.button.edit'|trans }}</a>
                        <form style="display: inline-block" onSubmit="return confirm('{{ 'crudlex.deleteEntityConfirmation'|trans({'%id%': childEntity.get('id')}) }}');" method="POST" action="{{ app.url_generator.generate('crudDelete', {'entity': child[1], 'id': childEntity.get('id')}) }}">
                            <input type="hidden" name="redirectEntity" value="{{ crudEntity }}" />
                            <input type="hidden" name="redirectId" value="{{ entity.get('id') }}" />
                            <input id="crudBtnDelete{{ childEntity.get('id') }}" type="submit" class="crudBtnDelete btn btn-default btn-xs btn-danger" value="{{ 'crudlex.button.delete'|trans }}" />
                        </form>
                    </td>
                </tr>
            {% endfor %}
        </table>
    {% endfor %}

{% endblock %}
