57 <th><fmt:message key="thead.owner"/></th> |
57 <th><fmt:message key="thead.owner"/></th> |
58 <td> |
58 <td> |
59 <select name="owner"> |
59 <select name="owner"> |
60 <option value="-1"><fmt:message key="placeholder.null-owner" /> </option> |
60 <option value="-1"><fmt:message key="placeholder.null-owner" /> </option> |
61 <c:forEach var="user" items="${users}"> |
61 <c:forEach var="user" items="${users}"> |
62 <option value="${user.id}">${user.displayname}</option> |
62 <option <c:if test="${not empty project.owner and user.id eq project.owner.id}">selected</c:if> value="${user.id}"><c:out value="${user.displayname}"/></option> |
63 </c:forEach> |
63 </c:forEach> |
64 </select> |
64 </select> |
65 </td> |
65 </td> |
66 </tr> |
66 </tr> |
67 </tbody> |
67 </tbody> |