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

48 lines
1.5 KiB
Plaintext

<%@ include file="/WEB-INF/decorators/include.jsp"%>
<html>
<head>
<link rel="stylesheet" href="./stylesheets/calendar.css" type="text/css" />
<script src="./javascripts/calendar.js"></script>
</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 (2/5) <br/>
This step is used to define some date like the starting date for the conference.<br/>
You have just to click on a field and the calendar will appear.<br/>
<br/>
<fmt:message key="conference2.start" /><form:input onclick="ds_sh(this);" path="dateStart" cssStyle="cursor: text" /> <form:errors path="dateStart" /><br /><br />
<fmt:message key="conference2.end" /><form:input onclick="ds_sh(this);" path="dateEnd" cssStyle="cursor: text" /> <form:errors path="dateEnd" /><br /><br />
<br />
<fmt:message key="conference2.article" /><form:input onclick="ds_sh(this);" path="dateArticle" cssStyle="cursor: text" /> <form:errors path="dateArticle" /><br /><br />
<fmt:message key="conference2.evaluation" /><form:input onclick="ds_sh(this);" path="dateEvaluation" cssStyle="cursor: text" /> <form:errors path="dateEvaluation" /><br /><br />
<input type="submit" name="_target0" value="Back">
<input type="submit" name="_target2" value="Next" />
</form:form>
<br />
<a href="<c:url value="main.htm"/>">Home</a>
</body>
</html>