Initial commit
This commit is contained in:
30
pma/templates/navigation/tree/database_select.twig
Normal file
30
pma/templates/navigation/tree/database_select.twig
Normal file
@ -0,0 +1,30 @@
|
||||
{{ quick_warp|raw }}
|
||||
|
||||
<div id="pma_navigation_select_database">
|
||||
{{ list_navigator|raw }}
|
||||
|
||||
<div id="pma_navigation_db_select">
|
||||
<form action="{{ url('/') }}">
|
||||
{{ get_hidden_fields({'server': server}) }}
|
||||
|
||||
<select name="db" class="hide" id="navi_db_select">
|
||||
<option value="" dir="{{ text_dir }}">{% trans 'Databases' %}…</option>
|
||||
{% for option in options %}
|
||||
<option value="{{ option.name }}" title="{{ option.title }}"
|
||||
data-apath="{{ option.data.apath }}"
|
||||
data-vpath="{{ option.data.vpath }}"
|
||||
data-pos="{{ option.data.pos }}"
|
||||
{{ option.isSelected ? " selected" : "" }}>
|
||||
{{- option.name -}}
|
||||
</option>
|
||||
{% endfor %}
|
||||
</select>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="pma_navigation_tree_content">
|
||||
<ul>
|
||||
{{ nodes|raw }}
|
||||
</ul>
|
||||
</div>
|
12
pma/templates/navigation/tree/path.twig
Normal file
12
pma/templates/navigation/tree/path.twig
Normal file
@ -0,0 +1,12 @@
|
||||
<div class='list_container hide'>
|
||||
<ul{{ has_search_results ? ' class="search_results"' }}>
|
||||
{{ list_content|raw }}
|
||||
</ul>
|
||||
|
||||
{% if not is_tree %}
|
||||
<span class='hide loaded_db'>{{ parent_name|url_encode }}</span>
|
||||
{% if list_content is empty %}
|
||||
<div>{% trans 'No tables found in database.' %}</div>
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
</div>
|
16
pma/templates/navigation/tree/state.twig
Normal file
16
pma/templates/navigation/tree/state.twig
Normal file
@ -0,0 +1,16 @@
|
||||
{{ quick_warp|raw }}
|
||||
|
||||
<div class="clearfloat"></div>
|
||||
|
||||
<ul>
|
||||
{{ fast_filter|raw }}
|
||||
{{ controls|raw }}
|
||||
</ul>
|
||||
|
||||
{{ page_selector|raw }}
|
||||
|
||||
<div id='pma_navigation_tree_content'>
|
||||
<ul>
|
||||
{{ nodes|raw }}
|
||||
</ul>
|
||||
</div>
|
Reference in New Issue
Block a user