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.
42 righe
1.2 KiB
42 righe
1.2 KiB
<? |
|
if (isset($this) && is_a($this,"attiCPN")) { |
|
$allegati = $this->suggerimenti(); |
|
if (!empty($allegati)) { |
|
$error = false; |
|
?> |
|
<div class="card mb-3"> |
|
<div class="card-header"> |
|
<strong class="card-title"><?= __("Suggerimenti") ?></strong> |
|
</div> |
|
<div class="card-body"> |
|
<table class="table table-striped"> |
|
<thead> |
|
<tr> |
|
<th><?= __("Titolo") ?></th> |
|
<th width="200"><?= __("Data caricamento") ?></th> |
|
<th width="10"></th> |
|
</tr> |
|
</thead> |
|
<tbody> |
|
<? |
|
foreach($allegati AS $allegato) { |
|
?> |
|
<tr> |
|
<td><?= $allegato["titolo"] ?></td> |
|
<td><?= mysql2datetime($allegato["timestamp"]) ?></td> |
|
<td> |
|
<input type="checkbox" name="suggerimento[]" value="<?= $allegato["codice"] ?>"> |
|
</td> |
|
</tr> |
|
<? |
|
} |
|
?> |
|
</tbody> |
|
</table> |
|
</div> |
|
</div> |
|
<? |
|
$return = true; |
|
} |
|
} |
|
?>
|