Ajout de la page about

Modification du droit pr modifier une conf.
Ajout de la liste des articles pr le chairman, il peut voir les évaluations à partir de ca.
This commit is contained in:
Frederic Debuire
2008-02-23 21:28:14 +00:00
parent 7ab701fc42
commit e94fdffded
14 changed files with 111 additions and 36 deletions

View File

@@ -0,0 +1,26 @@
<%@ include file="/WEB-INF/decorators/include.jsp"%>
<html>
<head>
</head>
<body>
<!-- About page for Yacos.com -->
<h4 class="title"><fmt:message key="title" /> : <fmt:message
key="title.detail" /></h4>
<center>
<h1 class="maintitle"><fmt:message key="title" /></h1>
<h3 class="subtitle"><fmt:message key="title.detail" /></h3>
</center>
<h3 class="subtitle"><fmt:message key="home.whatis" /></h3>
<p><fmt:message key="home.whatis.txt" /></p>
<h3 class="subtitle"><fmt:message key="home.author" /></h3>
<p><fmt:message key="home.author.txt" /></p>
<h3 class="subtitle"><fmt:message key="home.referee" /></h3>
<p><fmt:message key="home.referee.txt" /></p>
</body>
</html>

View File

@@ -35,9 +35,10 @@
</tr>
<tr>
<td class="formLabel">Authorized file types</td>
<td><form:checkbox path="typePDF" /> Tex/Latec <form:checkbox
path="typeLatec" /> Word <form:checkbox path="typeWord" />
OpenOffice <form:checkbox path="typeODT" /></td>
<td>PDF <form:checkbox path="typePDF" />
Tex/Latec <form:checkbox path="typeLatec" />
Word <form:checkbox path="typeWord" />
OpenOffice <form:checkbox path="typeODT" /></td>
</tr>
</tbody>
<thead>

View File

@@ -1,30 +1,33 @@
<%@ include file="/WEB-INF/decorators/include.jsp"%>
<html>
<head></head>
<body>
<h4 class="title">NO NAME</h4>
<head>
</head>
<body>
<h4 class="title">Article's list</h4>
<c:forEach items="${listArticle}" var="article">
<div class="article cbb">
<h2>${article.title}</h2>
<p class="author">Author: <b>${article.mainAuthor.firstName} ${article.mainAuthor.lastName}</b></p>
<p class="secondaryAuthors">
<p>Author: <b>${article.mainAuthor.firstName} ${article.mainAuthor.lastName}</b></p>
<p>
<c:if test="${not empty article.secondaryAuthors}">
Secondary Authors:
<ul>
<c:forEach items="${article.secondaryAuthors}" var="sAuthor">
<li>${sAuthor}</li>
</c:forEach>
</ul>
<p class="topic">Topic: <b>${article.topic}</b></p>
<p class="article_url"><a href="
<c:url value="/download.htm">
<c:param name="articleId" value="${article.id}"/>
</c:url>">Download the article</a>
</c:if>
<p>Topic: <b>${article.topic}</b></p>
<p>State: <b>${article.state}</b></p>
<p><a href="<c:url value="/download.htm"><c:param name="articleId" value="${article.id}"/></c:url>">Download</a>
</p>
</div>
<br />
<hr />
<br />
<c:if test="${article.state == 'EVALUATED' or article.state == 'REJECTED' or article.state == 'ACCEPTED'}">
<p><a href="<c:url value="listReport.htm?id=${article.id}"/>"><fmt:message key="validate.report" /></a></p>
</c:if>
</div>
</c:forEach>

View File

@@ -6,6 +6,14 @@
<h4 class="title"><fmt:message key="report.headPage" /></h4>
<c:choose>
<c:when test="${empty listReport}">
<div class="warningBox">
There is no report for this article at the moment.
</div>
</c:when>
<c:otherwise>
<c:forEach items="${listReport}" var="report">
<table>
<tr>
@@ -36,7 +44,12 @@
</table>
<hr>
</c:forEach>
</c:otherwise>
</c:choose>
<br />
<a class="back_link" href="<c:url value="${whereIcome}"/>"><fmt:message key="form.link.back" /></a>
<a href="<c:url value="main.htm"/>">Home</a>
</body>
</html>