<%@ include file="/project/include.jsp"%> <span class="generic-label">Prestazioni erogate nel periodo <strong>${j:formatWithFormatter(prestErogInterventoDto.periodoRifDa, "it.cedaf.juice.mvc.binding.formatters.DateFormatter")}</strong> - <strong>${j:formatWithFormatter(prestErogInterventoDto.periodoRifA, "it.cedaf.juice.mvc.binding.formatters.DateFormatter")}</strong></span> <br/><br/> <c:choose> <c:when test="${!empty prestErogInterventoDto.errorMsg}"> <span class="generic-warning-message">${prestErogInterventoDto.errorMsg}</span> </c:when> <c:otherwise> <table width="100%" class="static-grid-modal-table"> <tr> <td class="static-grid-modal-column-title">${j:bundle('LBL_gruppoPrestazioni')}</td> <td class="static-grid-modal-column-title" style="text-align:right;">Q.t Erogata</td> </tr> <c:forEach items="${prestErogInterventoDto.prestazioniErogate}" var="infoPrestErog" > <c:if test="${!empty infoPrestErog}"> <tr> <td class="static-grid-modal-td">${infoPrestErog.descrizioneGruppoPrest}</td> <td class="static-grid-modal-td" style="text-align:right;">${j:formatWithFormatter(infoPrestErog.qtaErogata, "it.cedaf.icare.commons.control.binding.requestbean.formatters.ImportoFormatter")}</td> </tr> </c:if> </c:forEach> </table> </c:otherwise> </c:choose>