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/operations/
Upload File :
Current Directory [ Writeable ] Root Directory [ Writeable ]


Current File : C:/xampp/phpMyAdmin/templates/table/operations/view.twig
<!-- VIEW operations -->
<div>
    <form method="post" action="view_operations.php">
        {{ get_hidden_inputs(db, table) }}
        <input type="hidden" name="reload" value="1">
        <fieldset>
            <legend>{% trans 'Operations' %}</legend>
            <table>
                <!-- Change view name -->
                <tr>
                    <td>{% trans 'Rename view to' %}</td>
                    <td><input type="text" name="new_name" onfocus="this.select()"
                               value="{{ table }}"
                               required>
                    </td>
                </tr>
            </table>
        </fieldset>
        <fieldset class="tblFooters">
            <input type="hidden" name="submitoptions" value="1">
            <input class="btn btn-primary" type="submit" value="{% trans 'Go' %}">
        </fieldset>
    </form>
</div>

<div>
    <fieldset class="caution">
        <legend>{% trans 'Delete data or table' %}</legend>
        <ul>{{ delete_data_or_table_link | raw }}</ul>
    </fieldset>
</div>