init web ems all
This commit is contained in:
19
phpMyAdmin/templates/database/central_columns/add_column.twig
Executable file
19
phpMyAdmin/templates/database/central_columns/add_column.twig
Executable file
@@ -0,0 +1,19 @@
|
||||
<table class="central_columns_add_column" class="navigation nospacing nopadding">
|
||||
<tr>
|
||||
<td class="navigation_separator largescreenonly"></td>
|
||||
<td class="central_columns_navigation">
|
||||
{{ icon|raw }}
|
||||
<form id="add_column" action="db_central_columns.php" method="post">
|
||||
{{ Url_getHiddenInputs(db)}}
|
||||
<input type="hidden" name="add_column" value="add">
|
||||
<input type="hidden" name="pos" value="{{ pos }}" />
|
||||
<input type="hidden" name="total_rows" value="{{ total_rows }}"/>
|
||||
{{ table_drop_down|raw }}
|
||||
<select name="column-select" id="column-select">
|
||||
<option value="" selected="selected">{% trans 'Select a column.' %}</option>
|
||||
</select>
|
||||
</form>
|
||||
</td>
|
||||
<td class="navigation_separator largescreenonly"></td>
|
||||
</tr>
|
||||
</table>
|
||||
9
phpMyAdmin/templates/database/central_columns/edit_table_header.twig
Executable file
9
phpMyAdmin/templates/database/central_columns/edit_table_header.twig
Executable file
@@ -0,0 +1,9 @@
|
||||
<table id="table_columns" class="noclick">
|
||||
<caption class="tblHeaders">{% trans 'Structure' %}</caption>
|
||||
<thead>
|
||||
<tr>
|
||||
{% for header in headers %}
|
||||
<th>{{ header }}</th>
|
||||
{% endfor %}
|
||||
</tr>
|
||||
</thead>
|
||||
42
phpMyAdmin/templates/database/central_columns/table_navigation.twig
Executable file
42
phpMyAdmin/templates/database/central_columns/table_navigation.twig
Executable file
@@ -0,0 +1,42 @@
|
||||
<table style="display:inline-block;max-width:49%" class="navigation nospacing nopadding">
|
||||
<tr>
|
||||
<td class="navigation_separator"></td>
|
||||
{% if pos - max_rows >= 0 %}
|
||||
<td>
|
||||
<form action="db_central_columns.php" method="post">
|
||||
{{ Url_getHiddenInputs(db) }}
|
||||
<input type="hidden" name="pos" value="{{ pos - max_rows }}" />
|
||||
<input type="hidden" name="total_rows" value="{{ total_rows }}"/>
|
||||
<input type="submit" name="navig" class="ajax" value="<" />
|
||||
</form>
|
||||
</td>
|
||||
{% endif %}
|
||||
{% if nb_total_page > 1 %}
|
||||
<td>
|
||||
<form action="db_central_columns.php" method="post">
|
||||
{{ Url_getHiddenInputs(db) }}
|
||||
<input type="hidden" name="total_rows" value="{{ total_rows }}"/>
|
||||
{{ page_selector|raw }}
|
||||
</form>
|
||||
</td>
|
||||
{% endif %}
|
||||
{% if pos + max_rows < total_rows %}
|
||||
<td>
|
||||
<form action="db_central_columns.php" method="post">
|
||||
{{ Url_getHiddenInputs(db) }}
|
||||
<input type="hidden" name="pos" value="{{ pos + max_rows }}"/>
|
||||
<input type="hidden" name="total_rows" value="{{ total_rows }}"/>
|
||||
<input type="submit" name="navig" class="ajax" value=">" />
|
||||
</form>
|
||||
</td>
|
||||
{% endif %}
|
||||
</form>
|
||||
</td>
|
||||
<td class="navigation_separator"></td>
|
||||
<td>
|
||||
<span>{% trans 'Filter rows' %}:</span>
|
||||
<input type="text" class="filter_rows" placeholder="{% trans 'Search this table' %}">
|
||||
</td>
|
||||
<td class="navigation_separator"></td>
|
||||
</tr>
|
||||
</table>
|
||||
Reference in New Issue
Block a user