Files
yacos/YACOSWeb/WebContent/WEB-INF/jsp/addConference3.jsp
Frederic Debuire e94fdffded Ajout de la page about
Modification du droit pr modifier une conf.
Ajout de la liste des articles pr le chairman, il peut voir les évaluations à partir de ca.
2008-02-23 21:28:14 +00:00

68 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>PDF <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>