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.
 
 
 
 
 

58 righe
1.8 KiB

<?
if (isset($criterio)) {
?>
<div style="text-align:center">
<label><?= __("Si") ?></label>
[ <?= ($values["_0"][0] == "true") ? "X" : "&nbsp;&nbsp;&nbsp;" ?> ]
&nbsp;&nbsp;
<label><?= __("No") ?></label>
[ <?= ($values["_0"][0] == "false") ? "X" : "&nbsp;&nbsp;&nbsp;" ?> ]
</div><br>
<? if ($values["_0"][0] == "true" || $show_empty) { ?>
<div id="criteria_<?= $criterio["codice"] ?>">
<table width="100%">
<tr>
<th style="<?= $styles["th"] ?>">
<?= __("Descrivi tali misure") ?>
</th>
</tr>
<tr>
<td>
<?= str_replace("\n\r", "<br><br>", $values["_0"][1]); ?>
</td>
</tr>
</table>
</div>
<? } ?>
<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>
<?
}
?>