[ Avaa Bypassed ]




Upload:

Command:

www-data@18.227.111.102: ~ $
<table id="tablerowstats" class="width100 data">
<caption class="tblHeaders">{% trans 'Row statistics' %}</caption>
<tbody>
    {% if showtable['Row_format'] is defined %}
        <tr>
        <th class="name">{% trans 'Format' %}</th>
        {% if showtable['Row_format'] == 'Fixed' %}
            <td class="value">{% trans 'static' %}</td>
        {% elseif showtable['Row_format'] == 'Dynamic' %}
            <td class="value">{% trans 'dynamic' %}</td>
        {% else %}
            <td class="value">{{ showtable['Row_format'] }}</td>
        {% endif %}
        </tr>
    {% endif %}

    {% if showtable['Create_options'] is not empty %}
        <tr>
        <th class="name">{% trans 'Options' %}</th>
        {% if showtable['Create_options'] == 'partitioned' %}
            <td class="value">{% trans 'partitioned' %}</td>
        {% else %}
            <td class="value">{{ showtable['Create_options'] }}</td>
        {% endif %}
        </tr>
    {% endif %}

    {% if tbl_collation is not empty %}
        <tr>
        <th class="name">{% trans 'Collation' %}</th>
        <td class="value">
            <dfn title="{{ Charsets_getCollationDescr(tbl_collation) }}">
                {{ tbl_collation }}
            </dfn>
        </td>
        </tr>
    {% endif %}

    {% if not is_innodb and showtable['Rows'] is defined %}
        <tr>
        <th class="name">{% trans 'Rows' %}</th>
        <td class="value">{{ Util_formatNumber(showtable['Rows'], 0) }}</td>
        </tr>
    {% endif %}

    {% if not is_innodb
        and showtable['Avg_row_length'] is defined
        and showtable['Avg_row_length'] > 0 %}
        <tr>
        <th class="name">{% trans 'Row length' %}</th>
        {% set avg_row_length = Util_formatByteDown(showtable['Avg_row_length'], 6, 1) %}
        <td class="value">{{ avg_row_length[0] }} {{ avg_row_length[1] }}</td>
        </tr>
    {% endif %}

    {% if not is_innodb
        and showtable['Data_length'] is defined
        and showtable['Rows'] is defined
        and showtable['Rows'] > 0
        and mergetable == false %}
        <tr>
        <th class="name">{% trans 'Row size' %}</th>
        <td class="value">{{ avg_size }} {{ avg_unit }}</td>
        </tr>
    {% endif %}

    {% if showtable['Auto_increment'] is defined %}
        <tr>
        <th class="name">{% trans 'Next autoindex' %}</th>
        <td class="value">{{ Util_formatNumber(showtable['Auto_increment'], 0) }}</td>
        </tr>
    {% endif %}

    {% if showtable['Create_time'] is defined %}
        <tr>
        <th class="name">{% trans 'Creation' %}</th>
        <td class="value">{{ Util_localisedDate(showtable['Create_time']|date('U')) }}</td>
        </tr>
    {% endif %}

    {% if showtable['Update_time'] is defined %}
        <tr>
        <th class="name">{% trans 'Last update' %}</th>
        <td class="value">{{ Util_localisedDate(showtable['Update_time']|date('U')) }}</td>
        </tr>
    {% endif %}

    {% if showtable['Check_time'] is defined %}
        <tr>
        <th class="name">{% trans 'Last check' %}</th>
        <td class="value">{{ Util_localisedDate(showtable['Check_time']|date('U')) }}</td>
        </tr>
    {% endif %}
</tbody>
</table>

Filemanager

Name Type Size Permission Actions
action_row_in_structure_table.twig File 1.01 KB 0644
actions_in_table_structure.twig File 4.94 KB 0644
add_column.twig File 1.09 KB 0644
check_all_table_column.twig File 2.68 KB 0644
display_partitions.twig File 7.08 KB 0644
display_structure.twig File 9.3 KB 0644
display_table_stats.twig File 3.23 KB 0644
move_columns_dialog.twig File 308 B 0644
optional_action_links.twig File 1.34 KB 0644
partition_definition_form.twig File 517 B 0644
row_stats_table.twig File 3.14 KB 0644
table_structure_header.twig File 763 B 0644
table_structure_row.twig File 2.27 KB 0644