Files
yacos/YACOSWeb/WebContent/WEB-INF/jsp/evaluation.jsp
Nicolas Michard b3a2cbc528 modif conflit
2008-01-22 11:04:15 +00:00

49 lines
1.1 KiB
Plaintext

<%@ include file="/WEB-INF/decorators/include.jsp"%>
<html>
<head></head>
<body>
<h2 align="center"><fmt:message key="evaluation.title"/></h2>
<form:form method="post" commandName="evaluationForm">
<table>
<c:forEach items="${evaluationForm.simpleRatings}" var="criterion" varStatus="j">
<tr>
<td>${criterion.name}</td>
<form:hidden path="simpleRatings[${j.index}].name"></form:hidden>
<td>
<c:forEach var="i" begin="${criterion.min_rating}" end="${criterion.max_rating}" step="1">
<c:out value="${i}"/>
<form:radiobutton path="simpleRatings[${j.index}].value" value="${i}" />
</c:forEach>
</td>
</tr>
</c:forEach>
<tr>
<td><fmt:message key="evaluation.commentAuthor"/></td>
<td><form:textarea path="commentAuthor"/></td>
</tr>
<tr>
<td><fmt:message key="evaluation.commentPCMember"/></td>
<td><form:textarea path="commentPCMember"/></td>
<tr>
</table>
<input type="submit" name="submit" value="<fmt:message key="button.OK"/>"/>
</form:form>
</body>
</html>