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>
|
Reference in New Issue
Block a user