Server : Apache/2.4.43 (Win64) OpenSSL/1.1.1g PHP/7.4.6
System : Windows NT USER-PC 6.1 build 7601 (Windows 7 Professional Edition Service Pack 1) AMD64
User : User ( 0)
PHP Version : 7.4.6
Disable Function : NONE
Directory :  C:/xampp/phpMyAdmin/templates/table/tracking/
Upload File :
Current Directory [ Writeable ] Root Directory [ Writeable ]


Current File : C:/xampp/phpMyAdmin/templates/table/tracking/report_table.twig
<table id="{{ table_id }}" class="data">
    <thead>
        <tr>
            <th>{% trans %}#{% context %}Number{% endtrans %}</th>
            <th>{% trans 'Date' %}</th>
            <th>{% trans 'Username' %}</th>
            <th>{{ header_message }}</th>
            <th>{% trans 'Action' %}</th>
        </tr>
    </thead>
    <tbody>
        {% for entry in entries %}
            <tr class="noclick">
                <td class="right"><small>{{ entry.line_number }}</small></td>
                <td><small>{{ entry.date }}</small></td>
                <td><small>{{ entry.username }}</small></td>
                <td>{{ entry.formated_statement|raw }}</td>
                <td class="nowrap">
                    <a class="delete_entry_anchor ajax" href="tbl_tracking.php" data-post="
                        {{- entry.url_params|raw }}">
                        {{ drop_image_or_text|raw }}
                    </a>
                </td>
            </tr>
        {% endfor %}
    </tbody>
</table>