Files
yacos/YACOSWeb/WebContent/WEB-INF/jsp/addConference3.jsp
Frederic Debuire 3b0c845902 Correction de divers bug.
Changement de listConference, ça affiche les roles maintenant
2008-02-16 15:36:20 +00:00

67 lines
1.5 KiB
Plaintext

<%@ include file="/WEB-INF/decorators/include.jsp"%>
<html>
<head>
</head>
<body>
<h4 class="title"><c:choose>
<c:when test="${param['action'] eq 'modify'}">
<fmt:message key="conference.titleModify" />
</c:when>
<c:otherwise>
<fmt:message key="conference.titleAdd" />
</c:otherwise>
</c:choose></h4>
<fmt:message key="step">
<fmt:param value="3" />
<fmt:param value="5" />
</fmt:message>
<p class="formHelp"><fmt:message key="conference.help.step3" /></p>
<form:form commandName="formConference" name="monForm">
<table>
<thead>
<tr>
<th colspan="2">Information</th>
</tr>
</thead>
<tbody>
<tr>
<td class="formLabel">Page's numbers</td>
<td><form:input path="pageNumber"/><div class="formError"><form:errors path="pageNumber" /></div></td>
</tr>
<tr>
<td class="formLabel">Authorized file types</td>
<td><form:checkbox path="typePDF" /> Tex/Latec <form:checkbox
path="typeLatec" /> Word <form:checkbox path="typeWord" />
OpenOffice <form:checkbox path="typeODT" /></td>
</tr>
</tbody>
<thead>
<tr>
<th colspan="2">Complementary Informations</th>
</tr>
</thead>
<tbody>
<tr>
<td colspan="2"><form:textarea path="sendInfo" cols="70"
rows="6" /></td>
</tr>
</tbody>
<tfoot>
<tr>
<td>&nbsp;</td>
<td><input type="submit" name="_target1" value="Back" /> <input
type="submit" name="_target3" value="Next" /></td>
</tr>
</tfoot>
</table>
</form:form>
<a href="<c:url value="main.htm"/>">Home</a>
</body>
</html>