gestione gare pubbliche
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.
 
 
 
 
 

57 righe
1.7 KiB

<?
if (isset($criterio)) {
?>
<table width="100%">
<?
for ($i=0;$i<5;$i++) {
if (!empty($values["_0".$i][0]) || $show_empty) {
?>
<tr>
<th style="<?= $styles["th"] ?>">
<?= __("Anno") ?>
</th>
<td>
<?= $values["_0".$i][0] ?>
</td>
<th style="<?= $styles["th"] ?>">
<?= __("Fatturato") ?>
</th>
<td>
<?= $values["_0".$i][1]; ?>
<?= self::valute()[$values["_0".$i][2]] ?>
</td>
</tr>
<? }
} ?>
</table>
<table width="100%">
<tr>
<th style="<?= $styles["th"] ?>">
<?= __("Queste informazioni sono disponibili elettronicamente?") ?>
</th>
<td>
<label><?= __("Si") ?></label>
[ <?= ($values["_1"][0] == "true") ? "X" : "&nbsp;&nbsp;&nbsp;" ?> ]
&nbsp;&nbsp;
<label><?= __("No") ?></label>
[ <?= ($values["_1"][0] == "false") ? "X" : "&nbsp;&nbsp;&nbsp;" ?> ]
</td>
</tr>
<? if ($values["_1"][0] == "true" || $show_empty) { ?>
<tr>
<th style="<?= $styles["th"] ?>"><?= __("URL") ?></th>
<th style="<?= $styles["th"] ?>"><?= __("Codice") ?></th>
</tr>
<tr>
<td>
<a href="<?= $values["_1"][1]; ?>" target="_blank" title="Sito esterno"><?= $values["_1"][1]; ?></a>
</td>
<td>
<?= $values["_1"][2]; ?>
</td>
</tr>
<? } ?>
</table>
<?
}
?>