<%@ include file="/project/include.jsp" %> <table border="0" cellpadding="0" cellspacing="3" width="100%"> <tr> <td width="40%" colspan="2" style="text-align: left;"> <shell:highlight> <img src="${j:getResourceUrlOfModule('commons','img/entities/soggetto.gif')}" width="24" height="24" border="0" align="absmiddle"><span class="generic-label" style="font-size: 12px;"> Soggetto A</span> <br><a href="javascript:updateSoggetto(${dto_main.idSoggettoA});" class="form-data-link" style="font-size: 12px;">${dto_main.nominativoA}</a><span class="form-data" style="font-size: 12px;"> [${dto_main.icaroCodeA}]</span> </shell:highlight> </td> <td width="4%"> </td> <td width="40%" colspan="2" style="text-align: left;"> <shell:highlight> <img src="${j:getResourceUrlOfModule('commons','img/entities/soggettoB.gif')}" width="24" height="24" border="0" align="absmiddle"><span class="generic-label" style="font-size: 12px;"> Soggetto B</span> <br><a href="javascript:updateSoggetto(${dto_main.idSoggettoB});" class="form-data-link" style="font-size: 12px;">${dto_main.nominativoB}</a><span class="form-data" style="font-size: 12px;"> [${dto_main.icaroCodeB}]</span> </shell:highlight> </td> </tr> <c:forEach var="sez" items="${dto_main.elencoSezioni}"> <c:choose> <c:when test="${sez.tipo == 'VAL'}"> <tr> <td colspan="5" class="form-data" style="padding-top: 16px; border-bottom: 1px dashed rgb(210, 210, 210);"> ${sez.titolo} </td> </tr> <c:forEach var="riga" items="${sez.elencoRighe}"> <tr> <td class="form-label"> ${riga.campo}</td> <td class="form-data" style="width: 50%"> ${riga.valoreA}</td> <td> <c:if test="${riga.confronto!= 'U'}"><img src="${j:getResourceUrlOfModule('shell','img/messages/warning-small.gif')}" width="16" height="16" border="0" align="absmiddle"></c:if></td> <td class="form-label"> ${riga.campo}</td> <td class="form-data" style="width: 50%"> ${riga.valoreB}</td> </tr> </c:forEach> </c:when> <c:when test="${sez.tipo == 'SET'}"> <tr> <td colspan="5" class="form-data" style="padding-top: 16px; border-bottom: 1px dashed rgb(210, 210, 210);"> ${sez.titolo} <c:if test="${!empty sez.message}"> <img src="${j:getResourceUrlOfModule('shell','img/messages/error-small.gif')}" width="16" height="16" border="0" align="absmiddle"><span class="generic-warning-message"> ${sez.message}</span></c:if> </td> </tr> <c:forEach var="riga" items="${sez.elencoRighe}"> <tr> <td class="form-values" colspan="2"> ${riga.valoreA}</td> <td> </td> <td class="form-values" colspan="2"> ${riga.valoreB}</td> </tr> </c:forEach> </c:when> </c:choose> </c:forEach> </table>