Corrections diverses

This commit is contained in:
2008-02-25 14:23:08 +00:00
parent 7f37bba101
commit d8a31c0219
7 changed files with 64 additions and 52 deletions

View File

@@ -9,17 +9,19 @@
<form:form method="post" commandName="evaluationForm" id="account_data">
<p class="legend">Rating</p>
<fieldset>
<fieldset class="inline">
<c:forEach items="${evaluationForm.simpleRatings}" var="criterion" varStatus="j">
<div>
<form:label path="title">${criterion.name}</form:label>
<form:hidden path="simpleRatings[${j.index}].name"></form:hidden>
<form:label path="simpleRatings[${j.index}].name"><form:select path="simpleRatings[${j.index}].value">
<form:label path="simpleRatings[${j.index}].name">
${criterion.name}
</form:label>
<form:select path="simpleRatings[${j.index}].value">
<c:forEach var="i" begin="${criterion.min_rating}" end="${criterion.max_rating}">
<form:option value="${i}"></form:option>
</c:forEach>
</form:select></form:label>
</form:select>
</div>
</c:forEach>