HEX
Server: Apache/2.4.41 (Ubuntu)
System: Linux wordpress-ubuntu-s-2vcpu-4gb-fra1-01 5.4.0-169-generic #187-Ubuntu SMP Thu Nov 23 14:52:28 UTC 2023 x86_64
User: root (0)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/zaklada/wp-content/plugins/wpml-media-translation/templates/menus/media-translation.twig
<div class="wrap">

    <h2>{{ strings.heading }}</h2>

    {% include 'batch-translation.twig' with batch_translation %}

    <div class="tablenav top wpml-media-tablenav">
        {% include 'media-translation-filters.twig' %}
    </div>

    <table class="widefat striped wpml-media-table js-otgs-table-sticky-header">
        <thead>
        <tr>
            <th class="wpml-col-media-title">{{ strings.original_language }}</th>
            <th class="wpml-col-media-translations">
                {% for code, language in languages %}
                    {% if target_language is empty or target_language == code %}
                        <span class="js-otgs-popover-tooltip" title="{{ language.name }}"><img src="{{ language.flag }}"
                                                                                               width="16" height="12"
                                                                                               alt="{{ language.code }}"></span>
                    {% endif %}
                {% endfor %}
            </th>
        </tr>
        </thead>
        <tbody>
        {% if attachments %}
            {% for attachment in attachments %}
                {% include 'media-translation-table-row.twig' with {'attachment' : attachment, 'languages': languages, 'strings': strings, 'target_language': target_language } only %}
            {% endfor %}
        {% else %}
            <tr>
                <td colspan="2">{{ strings.no_attachments }}</td>
            </tr>
        {% endif %}
        </tbody>

    </table>

    <div class="tablenav bottom">
        {% include 'pagination.twig' with {'pagination_model' : pagination} only %}

        {% include 'media-translation-popup.twig' %}

    </div>

</div>