44 <th><fmt:message key="issue.id"/></th> |
44 <th><fmt:message key="issue.id"/></th> |
45 <td>${issue.id}</td> |
45 <td>${issue.id}</td> |
46 </tr> |
46 </tr> |
47 </c:if> |
47 </c:if> |
48 <tr> |
48 <tr> |
49 <th><fmt:message key="issue.project"/></th> |
49 <th><fmt:message key="project"/></th> |
50 <td> |
50 <td> |
51 <c:choose> |
51 <c:choose> |
52 <c:when test="${not empty issue.project}"> |
52 <c:when test="${not empty issue.project}"> |
53 <c:out value="${issue.project.name}" /> |
53 <c:out value="${issue.project.name}" /> |
54 <input type="hidden" name="pid" value="${issue.project.id}" /> |
54 <input type="hidden" name="pid" value="${issue.project.id}" /> |
78 <c:set var="dateValue" value="${issue.updated}"/> |
78 <c:set var="dateValue" value="${issue.updated}"/> |
79 <%@include file="../jspf/date-with-tooltip.jspf"%> |
79 <%@include file="../jspf/date-with-tooltip.jspf"%> |
80 </td> |
80 </td> |
81 </tr> |
81 </tr> |
82 <tr> |
82 <tr> |
83 <th><fmt:message key="issue.component"/></th> |
83 <th><fmt:message key="component"/></th> |
84 <td> |
84 <td> |
85 <select name="component"> |
85 <select name="component"> |
86 <option value="-1"><fmt:message key="placeholder.null-component"/></option> |
86 <option value="-1"><fmt:message key="placeholder.null-component"/></option> |
87 <c:forEach var="component" items="${viewmodel.components}"> |
87 <c:forEach var="component" items="${viewmodel.components}"> |
88 <option |
88 <option |