/trunk/scripts/modules/versionnage/squelettes/bdnt_partiel.tpl.tsv |
---|
1,3 → 1,10 |
<?=implode("\t", $champs_partiel)?> |
<?php foreach ($noms as $nom_infos) : ?><?php foreach ($champs_partiel as $champ) : ?><?=$nom_infos[$champ]?><?=(($dernier_champ == $champ) ? "\n" : "\t")?><?php endforeach; ?><?php endforeach; ?> |
<?php foreach ($noms as $nom_infos) : |
if (!isset($nom_infos['exclure_taxref']) || $nom_infos['exclure_taxref'] != '1') : |
foreach ($champs_partiel as $champ) : |
echo $nom_infos[$champ]; |
echo ($dernier_champ == $champ) ? "\n" : "\t"; |
endforeach; |
endif; |
endforeach; ?> |
/trunk/scripts/modules/versionnage/squelettes/diff_partiel.tpl.tsv |
---|
1,3 → 1,10 |
<?=implode("\t", $champs_partiel_diff)?> |
<?php foreach ($diff as $id => $nom_infos) : ?><?php foreach ($champs_partiel_diff as $champ) : ?><?=$nom_infos[$champ]?><?=(($dernier_champ == $champ) ? "\n" : "\t")?><?php endforeach; ?><?php endforeach; ?> |
<?php foreach ($diff as $id => $nom_infos) : |
if (!isset($nom_infos['exclure_taxref']) || $nom_infos['exclure_taxref'] != '1') : |
foreach ($champs_partiel_diff as $champ) : |
echo $nom_infos[$champ]; |
echo ($dernier_champ == $champ) ? "\n" : "\t"; |
endforeach; |
endif; |
endforeach; ?> |