23 lines
932 B
PHP
Executable File
23 lines
932 B
PHP
Executable File
<div class="input-group input-group-lg shadow-sm">
|
|
<span class="input-group-text bg-white border-primary-subtle text-primary">
|
|
<i class="fas fa-search-plus"></i>
|
|
</div>
|
|
<select name="listetables"
|
|
id="listetables"
|
|
class="form-select selectpicker show-tick w-100"
|
|
data-live-search="true"
|
|
data-size="10"
|
|
data-style="btn-white border-primary-subtle fw-bold"
|
|
onchange="chargerFichiersTable();"
|
|
autofocus>
|
|
<option value="" data-icon="fas fa-hand-pointer"><?= _("--- Choisir une table à gérer ---") ?></option>
|
|
<?= liste_options($autrestables, '', false) ?>
|
|
</select>
|
|
</div>
|
|
|
|
<div class="mt-2">
|
|
<small class="text-muted italic ps-2">
|
|
<i class="fas fa-info-circle me-1"></i>
|
|
<?= _("Tapez le nom d'une table pour filtrer rapidement la liste.") ?>
|
|
</small>
|
|
</div>
|