interventoAdozioneDisposizioni.jsp 2.96 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
<%@ include file="/project/include.jsp" %>

<j:tile slave="disposizioni" name="shell.slaveToolbar" />

<shell:grid description="tipoDisposizione; dataRevoca" slave="disposizioni" />

<bui:out slave="disposizioni" modes="create">
	<center>
		<shell:fieldset title="Disposizione">
		<table border="0" cellspacing="3" cellpadding="0" >
			<tr>
				<td class="form-label">
					<shell:label prop="idDisposizione" />
				</td>
				<td class="form-values">
					<j:bind prop="idDisposizione">
						<j:select class="form-input" emptyOptionDescr=""/>
						<shell:error />
					</j:bind>
				</td>
	 		</tr>
	 	</table>
	</shell:fieldset>
	</center>
</bui:out>

<bui:out slave="disposizioni" modes="view">
	<shell:fieldset title="Disposizione">
		<table border="0" cellspacing="3" cellpadding="0" width="100%">
			<tr>				
				<td class="form-label">				
					<shell:label prop="tipoDisposizione" />
				</td>
				<td class="form-values">
					<j:tile name="shell.plaintext" slave="disposizioni" prop="tipoDisposizione" />
				</td>	
			</tr>
			<tr>		
				<td class="form-label">				
					<shell:label prop="dataRevoca" />
				</td>
				<td class="form-values">
					<j:tile name="shell.plaintext" slave="disposizioni" prop="dataRevoca" />
				</td>						
	 		</tr>
	 		<tr>
				<td class="form-label">				
					<shell:label prop="note" />
				</td>
				<td class="form-values">
					<j:tile name="shell.plaintext" prop="note" slave="disposizioni"/>
				</td>
			</tr>
	 	</table>
	</shell:fieldset>
	
	<table border="0" cellspacing="3" cellpadding="0" width="100%">
		<tr>
			<td valign="top" width="50%">
				<shell:fieldset title="Informazioni provvedimento">
					<table border="0" cellpadding="0" cellspacing="3">
						<tr>
							<td class="form-label">				
								<shell:label prop="dataProvvedimento" />
							</td>
							<td class="form-values">
								<j:tile name="shell.plaintext" slave="disposizioni" prop="dataProvvedimento" />
							</td>
						</tr>
						<tr>
							<td class="form-label">				
								<shell:label prop="numeroProvvedimento" />
							</td>
							<td class="form-values">
								<j:tile name="shell.plaintext" slave="disposizioni" prop="numeroProvvedimento" />
							</td>
						</tr>
					</table>
				</shell:fieldset>
			</td>				
			<td valign="top" width="50%">
				<shell:fieldset title="Informazioni autorit emittente">
					<table border="0" cellpadding="0" cellspacing="3">
						<tr>		
							<td class="form-label">				
								<shell:label prop="tipoAutorita" />
							</td>
							<td class="form-values">
								<j:tile name="shell.plaintext" slave="disposizioni" prop="tipoAutorita" />
							</td>						
				 		</tr>
				 		<tr>											
							<td class="form-label">				
								<shell:label prop="nominativoAutorita" />
							</td>
							<td class="form-values">
								<j:tile name="shell.plaintext" slave="disposizioni" prop="nominativoAutorita" />
							</td>						
				 		</tr>
				 	</table>
			 	</shell:fieldset>
			 </td>
		</tr>
 	</table>
</bui:out>