You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
349 B
10 lines
349 B
2 years ago
|
<select class="width96 resize-vertical" id="db_select" name="db_select[]" size="6" multiple>
|
||
|
{% for database in databases %}
|
||
|
<option value="{{ database }}">{{ database }}</option>
|
||
|
{% endfor %}
|
||
|
</select>
|
||
|
<p>
|
||
|
<a href="#" id="db_select_href">{% trans 'Select all' %}</a> /
|
||
|
<a href="#" id="db_reset_href">{% trans 'Unselect all' %}</a>
|
||
|
</p>
|