Multiple corrections

This commit is contained in:
Frederic Debuire
2008-02-24 23:17:02 +00:00
parent 461fcf7793
commit 2251288425
15 changed files with 341 additions and 139 deletions

View File

@@ -37,22 +37,57 @@
<b><fmt:message key="conference.detail.date.article" /></b>&nbsp;<fmt:formatDate value="${conferenceReport.dateArticle }" dateStyle="long" /><br />
<b><fmt:message key="conference.detail.date.evaluation" /></b>&nbsp;<fmt:formatDate value="${conferenceReport.dateEvaluation }" dateStyle="long" /><br />
</div>
<h3 class="dateTitle">Submission Informations</h3>
<div class="textBox">
<c:if test="${conferenceReport.pageNumber == 0}">
The number of pages for an article is undefined.<br/><br/>
</c:if>
<c:if test="${conferenceReport.pageNumber != 0}">
The number of pages for an article is about ${conferenceReport.pageNumber}.<br/><br/>
</c:if>
The following file's type are allowed:&nbsp;
<c:choose>
<c:when test="${conferenceReport.typePDF == true or conferenceReport.typeLatec == true or conferenceReport.typeWord == true or conferenceReport.typeODT == true}">
<c:if test="${conferenceReport.typePDF == true}">
.pdf&nbsp;
</c:if>
<c:if test="${conferenceReport.typeLatec == true}">
.tex&nbsp;
</c:if>
<c:if test="${conferenceReport.typeWord == true}">
.doc&nbsp;.docx&nbsp;
</c:if>
<c:if test="${conferenceReport.typeODT == true}">
.odt&nbsp;
</c:if>
</c:when>
<c:otherwise>
Any file's type.
</c:otherwise>
</c:choose>
<br /><br />
Other informations about the submission: ${conferenceReport.sendInfo}
</div>
<h3 class="descriptionTitle"></h3>
<h3 class="descriptionTitle">Criterion</h3>
<div class="textBox">
<c:if test="${not empty criterionReport}">
<b>Criterion's list </b><br />
<b>Criterion's list: </b><br />
</c:if>
<c:forEach items="${criterionReport}" var="crit">
${crit.name} From ${crit.min_rating} to ${crit.max_rating}<br />
${crit.name} From <b>${crit.min_rating}</b> to <b>${crit.max_rating}</b><br />
</c:forEach>
</div>
<h3 class="descriptionTitle"></h3>
<h3 class="descriptionTitle">User</h3>
<div class="textBox">
<b>Chairman:</b> ${conferenceReport.chairman.firstName} ${conferenceReport.chairman.lastName}<br /><br />
<c:if test="${not empty userReport}">
<b>PCmember's list </b><br />
<b>PCmember's list: </b><br />
</c:if>
<c:forEach items="${userReport}" var="user">
${user.firstName} ${user.lastName}<br />