Corrections CSS

This commit is contained in:
2008-02-16 16:24:18 +00:00
parent 3b0c845902
commit e3cb257f9e
6 changed files with 161 additions and 23 deletions

View File

@@ -153,8 +153,10 @@ conference.title=Title
conference.description=Description
conference.otherInformations=Complementary information
conference.linkMenu.title=Adding Conference
conference.linkMenu.choose=Choosing current conference
conference.linkMenu.change=Change current conference
conference.linkMenu.choose=Select a conference
conference.linkMenu.change=Change conference
noCurrentConferenceText=No conference selected
currentConferenceText=You have selected :
conference.errors.dateStartNonValid=This date is not valid
conference.errors.dateStartSuperiorEnd=The start date must be earlier than the end date

View File

@@ -15,13 +15,17 @@
<c:choose>
<c:when test="${currentConferenceId != null}">
La conf<EFBFBD>rence courante est :<br />
<span class="currentConferenceTitle">${currentConference.title}</span>
<a href="<c:url value="listConference.htm"/>"><fmt:message key="conference.linkMenu.change" /></a>
<fmt:message key="currentConferenceText"/>
<div class="cbb button to-right">
<a href="<c:url value="listConference.htm"/>"><fmt:message key="conference.linkMenu.change" /></a>
</div>
<h1>${currentConference.title}</h1>
</c:when>
<c:otherwise>
Il n'y a pas de conf<6E>rence courante.<br />
<a href="<c:url value="listConference.htm"/>"><fmt:message key="conference.linkMenu.choose" /></a>
<div class="cbb button to-right">
<a href="<c:url value="listConference.htm"/>"><fmt:message key="conference.linkMenu.choose" /></a>
</div>
<h1><fmt:message key="noCurrentConferenceText"/></h1>
</c:otherwise>
</c:choose>

View File

@@ -29,26 +29,41 @@
<tr>
<td class="formLabel"><fmt:message key="conference2.article" />
</td>
<td><form:input onclick="ds_sh(this);" path="dateArticle"
cssStyle="cursor: text" /> <div class="formError"><form:errors path="dateArticle" /></div></td>
<td><form:input onfocus="ds_sh(this);" path="dateArticle"
cssStyle="cursor: text" />
<div class="formErrors">
<form:errors path="dateArticle" />
</div>
</td>
</tr>
<tr>
<td class="formLabel"><fmt:message key="conference2.evaluation" />
</td>
<td><form:input onclick="ds_sh(this);" path="dateEvaluation"
cssStyle="cursor: text" /> <div class="formError"><form:errors path="dateEvaluation" /></div>
<td><form:input onfocus="ds_sh(this);" path="dateEvaluation"
cssStyle="cursor: text" />
<div class="formErrors">
<form:errors path="dateEvaluation" />
</div>
</td>
</tr>
<tr>
<td class="formLabel"><fmt:message key="conference2.start" />
</td>
<td><form:input onclick="ds_sh(this);" path="dateStart"
cssStyle="cursor: text" /> <div class="formError"><form:errors path="dateStart" /></div></td>
<td><form:input onfocus="ds_sh(this);" path="dateStart"
cssStyle="cursor: text" />
<div class="formErrors">
<form:errors path="dateStart" />
</div>
</td>
</tr>
<tr>
<td class="formLabel"><fmt:message key="conference2.end" /></td>
<td><form:input onclick="ds_sh(this);" path="dateEnd"
cssStyle="cursor: text" /> <div class="formError"><form:errors path="dateEnd" /></div></td>
<td><form:input onfocus="ds_sh(this);" path="dateEnd"
cssStyle="cursor: text" />
<div class="formErrors">
<form:errors path="dateEnd" />
</div>
</td>
</tr>
</tbody>
<tfoot>

View File

@@ -75,4 +75,4 @@
</table>
</body>
</html>
</html>