Files
yacos/YACOSWeb/WebContent/WEB-INF/jsp/dispatchArticle.jsp
2008-02-07 15:52:22 +00:00

59 lines
1.2 KiB
Plaintext

<%@ include file="/WEB-INF/decorators/include.jsp"%>
<html>
<head></head>
<body>
<h4 class="title">NO NAME</h4>
<form:form commandName="formDispatcher">
<table>
<tr>
<th>articles to dispatch</th><th>members</th><th>members associate to the article</th>
</tr>
<c:forEach var="article" items="${articles}">
<tr>
<td>
<table>
<tr><td>title : ${article.title}
<br/> theme: ${article.topic}
<br/> main author: ${article.mainAuthor.firstName}{article.mainAuthor.lastName}</td>
<td><a href="${article.URL_article}">download the article</a></td>
</tr>
</table>
</td>
<td>
<input name="idArticle" type="hidden" value="${article.id}" />
<form:select path="member">
<c:forEach var="m" items="${members}">
<option value="${m.login}">
${m.firstName} ${m.lastName}(0)
</option>
</c:forEach>
</form:select>
<input type="submit" value="add" />
</td>
<td>
<form:select path="member">
<c:forEach var="am" items="${ArticlesMembers}">
<option value="${m.login}">
${m.firstName} ${m.lastName}(0)
</option>
</c:forEach>
</form:select>
</td>
</tr>
</c:forEach>
</table>
</form:form>
</body>
</html>