gestioneSostegniProgettoDetail.jsp 2.79 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
<%@ include file="/project/include.jsp" %>

<shell:fieldset title="${j:bundle('LBL_progetti_progetto_sostegniSoggetto_infoSostegno_SET')}">	
<table border="0" cellspacing="3" width="100%">
	<tr>
		<td class="form-label">
			<shell:label prop="descrizione" />
		</td>
		<td class="form-values" >
			<bui:out modes="view">
				<j:tile name="shell.plaintext" prop="descrizione" />
			</bui:out>
			<bui:out modes="create,update">
				<j:bind prop="descrizione">
					<j:text class="form-long-text"/>
					<shell:error />
				</j:bind>
			</bui:out>
		</td>
	</tr>
	<tr>
     	<td class="form-label">
   			<shell:label prop="tipoSostegno" />
   		</td>
		<td class="form-values">
			<bui:out modes="view">
				<j:tile name="shell.plaintext" prop="tipoSostegno" />
			</bui:out>
			<bui:out modes="create,update">
			  	<j:bind prop="tipoSostegno">
					<j:select class="form-input" id="idTipoSostegno" emptyOptionDescr=" " />
					<shell:error />
				</j:bind>
			</bui:out>
		</td>
	</tr>
	<tr>
	 	<td class="form-label">
			<shell:label prop="fontiFinanziamento" />
		</td>
		<td class="form-values">	
			<bui:out modes="view">
				<shell:grid description="descrizione" property="fontiFinanziamento"/>
			</bui:out>
			<bui:out  modes="create, update">
				<j:bind prop="fontiFinanziamento">
					<shell:swap swapId="fontiFinanziamentoId" />
				</j:bind>
			</bui:out>
		</td>
	</tr>
	<tr>
     	<td class="form-label">
   			<shell:label prop="dataInizio" />
   		</td>
   		<bui:out modes="view">   
	  		<td class="form-values">
				<j:tile name="shell.plaintext" prop="dataInizio" />
			</td>
		</bui:out>
		<bui:out modes="update,create" >
	    	<j:bind prop="dataInizio">
				<td class="form-values">
					<j:text class="form-date" id="dataInizioCLD" />
					<shell:calendar inputId="dataInizioCLD" />
					<shell:error />
				</td>
			</j:bind>
   		</bui:out>
	</tr>
	<tr>
    	<td class="form-label">
   			<shell:label prop="note" />
   		</td>
    	<bui:out modes="view">
		  	<td class="form-values">
				<j:tile name="shell.plaintext" prop="note" />
			</td>
		</bui:out>
		<bui:out modes="update,create">
		    <j:bind prop="note">
				<td class="form-values">
					<j:textarea class="form-normal-textarea" />
				    <shell:error />
				</td>
			</j:bind>
	   	</bui:out> 
	</tr>	
	<tr>
     	<td class="form-label">
   			<shell:label prop="dataFine" />
   		</td>
   		<bui:out modes="view">   
	  		<td class="form-values">
				<j:tile name="shell.plaintext" prop="dataFine" />
			</td>
		</bui:out>
		<bui:out modes="update,create" >
	    	<j:bind prop="dataFine">
				<td class="form-values">
					<j:text class="form-date" id="dataFineCLD" />
					<shell:calendar inputId="dataFineCLD" />
					<shell:error />
				</td>
			</j:bind>
   		</bui:out>
	</tr>
</table>	
</shell:fieldset>
<j:tile name="progettoViewUltimoMonitoraggio" />