Multiple corrections
This commit is contained in:
@@ -37,22 +37,57 @@
|
||||
<b><fmt:message key="conference.detail.date.article" /></b> <fmt:formatDate value="${conferenceReport.dateArticle }" dateStyle="long" /><br />
|
||||
<b><fmt:message key="conference.detail.date.evaluation" /></b> <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:
|
||||
<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
|
||||
</c:if>
|
||||
<c:if test="${conferenceReport.typeLatec == true}">
|
||||
.tex
|
||||
</c:if>
|
||||
<c:if test="${conferenceReport.typeWord == true}">
|
||||
.doc .docx
|
||||
</c:if>
|
||||
<c:if test="${conferenceReport.typeODT == true}">
|
||||
.odt
|
||||
</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 />
|
||||
|
||||
Reference in New Issue
Block a user