Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
38 righe
1.2 KiB
38 righe
1.2 KiB
<? |
|
$configPath = substr(__DIR__, 0, strpos(__DIR__, "public_html")) . "/config.php"; |
|
include_once($configPath); |
|
if (!empty($_SESSION["utente"]) && $_SESSION["utente"]->permission('progetti')) { |
|
$immobili = progetto::getImmobili(); |
|
?><h1><?= __("Gestione immobili") ?></h1><? |
|
if (!empty($immobili)) { |
|
?> |
|
<table clasS="table table-striped table-hover"> |
|
<thead> |
|
<tr> |
|
<th><?= __("Immobile") ?></th> |
|
<th></th> |
|
</tr> |
|
</thead> |
|
<tbody> |
|
<? |
|
foreach($immobili AS $immobile) { |
|
?> |
|
<tr> |
|
<td><?= $immobile["descrizione"] ?></td> |
|
<td width="10"> |
|
<button title="<?= __("Modifica") ?>" class="btn btn-info btn-sm" onclick="showModalWithURL('/backend/progetti/immobili/edit.php?codice=<?= $immobile["codice"] ?>')"> |
|
<span class="fa fa-edit"></span> |
|
</button> |
|
</td> |
|
</tr> |
|
<? |
|
} |
|
?> |
|
</tbody> |
|
</table> |
|
<? |
|
} else { |
|
alertManager::printWarningBox(__("Nessun risultato")); |
|
} |
|
} |
|
?>
|