Corrections diverses
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user