Files
yacos/YACOSWeb/WebContent/WEB-INF/jsp/addConference3.jsp
Frederic Debuire e71442720f Traduction du calendrier.
Ajout d'information pour la création de conf.
2008-02-11 16:47:18 +00:00

54 lines
1.2 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>
<form:form commandName="formConference" name="monForm">
Step (3/5) <br/>
Here you can add some constraints at your conference like the number of pages by articles or the type of file you want the authors to use.<br/>
<br/>
<form:errors path="*" />
<fieldset><legend>Information</legend>
Page's numbers <form:input path="pageNumber" />
<br /> <br />
PDF <form:checkbox path="typePDF"/>
Tex/Latec <form:checkbox path="typeLatec"/>
Word <form:checkbox path="typeWord"/>
OpenOffice <form:checkbox path="typeODT"/>
</fieldset>
<br />
<hr />
<br />
Complementary Information : <form:textarea path="sendInfo" />
<br />
<br />
<input type="submit" align="middle" name="_target1" value="Back">
<input type="submit" align="middle" name="_target3" value="Next" />
</form:form> <br />
<a href="<c:url value="main.htm"/>">Home</a>
</body>
</html>